We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
ip_address_type
1 parent 652598f commit d868303Copy full SHA for d868303
modules/vpc-endpoints/main.tf
@@ -33,6 +33,7 @@ resource "aws_vpc_endpoint" "this" {
33
route_table_ids = try(each.value.service_type, "Interface") == "Gateway" ? lookup(each.value, "route_table_ids", null) : null
34
policy = try(each.value.policy, null)
35
private_dns_enabled = try(each.value.service_type, "Interface") == "Interface" ? try(each.value.private_dns_enabled, null) : null
36
+ ip_address_type = try(each.value.ip_address_type, null)
37
38
dynamic "dns_options" {
39
for_each = try([each.value.dns_options], [])
0 commit comments