Skip to content

Instantly share code, notes, and snippets.

@davinkevin
Last active February 5, 2020 13:22
Show Gist options
  • Save davinkevin/dc3a56ebbbbcf8ac12fdefe3d28c79e2 to your computer and use it in GitHub Desktop.
Save davinkevin/dc3a56ebbbbcf8ac12fdefe3d28c79e2 to your computer and use it in GitHub Desktop.
test terraform
# Test de comment !
# Sur plusieurs ligne 👍
resource "aws_s3_bucket" "my-bucket-example" {
bucket = "my-bucket-example-23413426676567"
acl = "public-read"
}
resource "aws_s3_bucket_object" "picture-of-cat" {
bucket = aws_s3_bucket.my-bucket-example.id
key = "cat.jpg"
acl = "public-read"
source = "./cat.jpg"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment