File tree Expand file tree Collapse file tree
infrastructure/terraform/components/api Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -70,6 +70,7 @@ No requirements.
7070| ------| -------------|
7171| <a name =" output_api_urll " ></a > [ api\_ urll] ( #output\_ api\_ urll ) | n/a |
7272| <a name =" output_deployment " ></a > [ deployment] ( #output\_ deployment ) | Deployment details used for post-deployment scripts |
73+ | <a name =" output_s3_bucket_event_cache " ></a > [ s3\_ bucket\_ event\_ cache] ( #output\_ s3\_ bucket\_ event\_ cache ) | S3 Bucket ARN and Name for event cache |
7374<!-- vale on -->
7475<!-- markdownlint-enable -->
7576<!-- END_TF_DOCS -->
Original file line number Diff line number Diff line change @@ -14,3 +14,11 @@ output "deployment" {
1414 commit_id = var.commit_id
1515 }
1616}
17+
18+ output "s3_bucket_event_cache" {
19+ description = " S3 Bucket ARN and Name for event cache"
20+ value = var. enable_event_cache ? {
21+ arn = module.s3bucket_event_cache[0 ].arn
22+ bucket = module.s3bucket_event_cache[0 ].bucket
23+ } : {}
24+ }
You can’t perform that action at this time.
0 commit comments