From 2affbc266010e4059a72a5054c586ffa61a0939d Mon Sep 17 00:00:00 2001 From: Pedro Miranda Date: Fri, 6 Dec 2024 13:56:12 -0500 Subject: [PATCH] Enable support for ip_address_type --- main.tf | 2 ++ 1 file changed, 2 insertions(+) diff --git a/main.tf b/main.tf index 0c31722..d552972 100644 --- a/main.tf +++ b/main.tf @@ -87,6 +87,8 @@ resource "aws_apprunner_service" "this" { vpc_connector_arn = try(egress_configuration.value.vpc_connector_arn, null) } } + + ip_address_type = try(network_configuration.ip_address_type, "IPV4") } }