Skip to content

Commit eb50e48

Browse files
feat: Add output with public IP for whitelisting (#309)
1 parent 7803bcf commit eb50e48

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -430,6 +430,7 @@ allow_github_webhooks = true
430430
| <a name="output_task_role_name"></a> [task\_role\_name](#output\_task\_role\_name) | The Atlantis ECS task role name |
431431
| <a name="output_task_role_unique_id"></a> [task\_role\_unique\_id](#output\_task\_role\_unique\_id) | The stable and unique string identifying the Atlantis ECS task role. |
432432
| <a name="output_vpc_id"></a> [vpc\_id](#output\_vpc\_id) | ID of the VPC that was created or passed in |
433+
| <a name="output_vpc_nat_public_ips"></a> [vpc\_nat\_public\_ips](#output\_vpc\_nat\_public\_ips) | List of public Elastic IPs created for AWS NAT Gateway |
433434
| <a name="output_webhook_secret"></a> [webhook\_secret](#output\_webhook\_secret) | Webhook secret |
434435
<!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK -->
435436

outputs.tf

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -117,3 +117,8 @@ output "alb_https_listeners_arn" {
117117
description = "ARN of alb https listeners"
118118
value = module.alb.https_listener_arns
119119
}
120+
121+
output "vpc_nat_public_ips" {
122+
description = "List of public Elastic IPs created for AWS NAT Gateway"
123+
value = module.vpc.nat_public_ips
124+
}

0 commit comments

Comments
 (0)