diff options
| author | Paul Buetow <paul@buetow.org> | 2023-12-18 10:33:50 +0200 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2023-12-18 10:33:50 +0200 |
| commit | b9bbdc43519b7c97ff30f4f0f983ba479980f0c0 (patch) | |
| tree | 53277ac625fc1ff2f305b44076702806af67e4a3 /org-buetow-base | |
| parent | d749e6539855a7500146ce71943f48c271e175a8 (diff) | |
add VPC ID output
Diffstat (limited to 'org-buetow-base')
| -rw-r--r-- | org-buetow-base/outputs.tf | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/org-buetow-base/outputs.tf b/org-buetow-base/outputs.tf index a208d12..4a3cedd 100644 --- a/org-buetow-base/outputs.tf +++ b/org-buetow-base/outputs.tf @@ -2,6 +2,10 @@ output "my_self_hosted_services_efs_id" { value = aws_efs_file_system.my_self_hosted_services_efs.id } +output "my_vpc_id" { + value = aws_vpc.my_vpc.id +} + output "my_public_subnet_a_id" { value = aws_subnet.my_public_subnet_a.id } |
