File tree Expand file tree Collapse file tree 2 files changed +12
-3
lines changed
infrastructure/modules/storage Expand file tree Collapse file tree 2 files changed +12
-3
lines changed Original file line number Diff line number Diff line change 1+ output "bucket" {
2+ description = " The S3 bucket resource"
3+ value = aws_s3_bucket. this
4+ }
5+
6+ output "arn" {
7+ description = " The ARN of the S3 bucket"
8+ value = aws_s3_bucket. this . arn
9+ }
Original file line number Diff line number Diff line change @@ -5,15 +5,15 @@ output "fixtures_read_only_policy_arn" {
55
66output "fixtures_s3_bucket_arn" {
77 description = " The ARN of the S3 bucket for fixtures"
8- value = aws_s3_bucket . fixtures . arn
8+ value = module . fixtures_bucket . arn
99}
1010
1111output "zappa_s3_bucket" {
1212 description = " The name of the S3 bucket for Zappa deployments"
13- value = aws_s3_bucket . zappa
13+ value = module . zappa_bucket . bucket
1414}
1515
1616output "zappa_s3_bucket_arn" {
1717 description = " The ARN of the S3 bucket for Zappa deployments"
18- value = aws_s3_bucket . zappa . arn
18+ value = module . zappa_bucket . arn
1919}
You can’t perform that action at this time.
0 commit comments