Last active
February 5, 2020 13:22
-
-
Save davinkevin/dc3a56ebbbbcf8ac12fdefe3d28c79e2 to your computer and use it in GitHub Desktop.
test terraform
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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