We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 952a0a7 commit b8d2561Copy full SHA for b8d2561
terraform/prod/outputs.tf
@@ -46,3 +46,11 @@ output "rds_instance_address" {
46
value = module.rds.rds_instance_address
47
sensitive = true
48
}
49
+
50
+output "prod_s3_bucket_id" {
51
+ value = module.s3.s3_bucket_id
52
+}
53
54
+output "prod_s3_bucket_arn" {
55
+ value = module.s3.s3_bucket_arn
56
terraform/prod/s3/outputs.tf
@@ -2,3 +2,11 @@ output "cloudfront_domain_name" {
2
value = aws_cloudfront_distribution.prod_cdn.domain_name
3
4
5
6
+output "s3_bucket_id" {
7
+ value = aws_s3_bucket.prod.id
8
9
10
+output "s3_bucket_arn" {
11
+ value = aws_s3_bucket.prod.arn
12
0 commit comments