Last active
March 9, 2022 17:33
-
-
Save schosterbarak/bfb26ccc48da2bbd4568ea337e82364f to your computer and use it in GitHub Desktop.
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
module "old_s3_bucket_module_version" { | |
source = "cloudposse/s3-bucket/aws" | |
version = "0.2.1" | |
acl = "private" | |
enabled = true | |
user_enabled = true | |
versioning_enabled = false | |
allowed_bucket_actions = ["s3:GetObject", "s3:ListBucket", "s3:GetBucketLocation"] | |
name = "app" | |
stage = "test" | |
namespace = "eg" | |
} | |
module "valid_s3_bucket_version" { | |
source = "cloudposse/s3-bucket/aws" | |
version = "0.47.4" | |
acl = "private" | |
enabled = true | |
user_enabled = true | |
versioning_enabled = false | |
allowed_bucket_actions = ["s3:GetObject", "s3:ListBucket", "s3:GetBucketLocation"] | |
name = "app" | |
stage = "test" | |
namespace = "eg" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment