Skip to content

Commit

Permalink
fix: exposed default_outbound_access_enabled in variables
Browse files Browse the repository at this point in the history
  • Loading branch information
timur-khadimullin committed Jun 27, 2024
1 parent 247a2ea commit 1c6bb3b
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions variables.subnets.tf
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,9 @@ variable "subnets" {
id = optional(string)
key = optional(string)
}))
service_endpoint_policy_ids = optional(set(string))
service_endpoints = optional(set(string))
service_endpoint_policy_ids = optional(set(string))
service_endpoints = optional(set(string))
default_outbound_access_enabled = optional(bool, false)
delegation = optional(list(object({
name = string
service_delegation = object({
Expand All @@ -43,6 +44,7 @@ A map of subnets to create
- `resource_group_name` - (Required) The name of the resource group in which to create the subnet. This must be the resource group that the virtual network resides in. Changing this forces a new resource to be created.
- `service_endpoint_policy_ids` - (Optional) The list of IDs of Service Endpoint Policies to associate with the subnet.
- `service_endpoints` - (Optional) The list of Service endpoints to associate with the subnet. Possible values include: `Microsoft.AzureActiveDirectory`, `Microsoft.AzureCosmosDB`, `Microsoft.ContainerRegistry`, `Microsoft.EventHub`, `Microsoft.KeyVault`, `Microsoft.ServiceBus`, `Microsoft.Sql`, `Microsoft.Storage`, `Microsoft.Storage.Global` and `Microsoft.Web`.
- `default_outbound_access_enabled` - (Optional) Whether to allow default outbound access from the subnet. Defaults to `false`.
- `virtual_network_name` - (Required) The name of the virtual network to which to attach the subnet. Changing this forces a new resource to be created.
---
Expand Down

0 comments on commit 1c6bb3b

Please sign in to comment.