From 2d35ac06b634bb506bab90eb5a6a79ee6b384d43 Mon Sep 17 00:00:00 2001 From: eternaltyro Date: Tue, 18 Jul 2023 09:27:11 +0100 Subject: [PATCH] Output container subnet ID --- infra/production/outputs.tf | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/infra/production/outputs.tf b/infra/production/outputs.tf index 938e5595..86dfd149 100644 --- a/infra/production/outputs.tf +++ b/infra/production/outputs.tf @@ -49,3 +49,7 @@ output "raw-data-redis-endpoint" { ) } +output "container-subnet-id" { + description = "Subnet ID for the container subnet" + value = azurerm_subnet.raw-data-containers.id +}