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