Skip to content

Commit

Permalink
Create sanitech_configuration_management.tf
Browse files Browse the repository at this point in the history
  • Loading branch information
KOSASIH authored Apr 19, 2024
1 parent 507139e commit e52460f
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions func/sanitech_configuration_management.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
resource "aws_s3_bucket" "example" {
bucket = "example-bucket"
}

resource "null_resource" "configuration_management" {
provisioner "local-exec" {
command = "aws s3 sync . s3://${aws_s3_bucket.example.bucket}"
}
}

0 comments on commit e52460f

Please sign in to comment.