Skip to content

Commit

Permalink
Merge pull request #6 from fjdev/fix/variable-names
Browse files Browse the repository at this point in the history
Update connection_configuration variable type and description
  • Loading branch information
fjdev authored Jul 16, 2024
2 parents 62cb43b + bb01ecd commit 7e45a48
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ No modules.

| Name | Description | Type | Default | Required |
|------|-------------|------|---------|:--------:|
| <a name="input_connection_configurations"></a> [connection\_configurations](#input\_connection\_configurations) | (Required) A connection\_configuration block as defined below. | <pre>object({<br> name = string<br> vpn_client_address_pool = object({<br> address_prefixes = list(string)<br> })<br> route = optional(object({<br> associated_route_table_id = string<br> inbound_route_map_id = optional(string)<br> outbound_route_map_id = optional(string)<br> propagated_route_table = optional(object({<br> ids = list(string)<br> labels = optional(list(string))<br> }))<br> }))<br> internet_security_enabled = optional(bool)<br> })</pre> | n/a | yes |
| <a name="input_connection_configuration"></a> [connection\_configuration](#input\_connection\_configuration) | (Required) A connection\_configuration block as defined below. | <pre>object({<br> name = string<br> vpn_client_address_pool = object({<br> address_prefixes = list(string)<br> })<br> route = optional(object({<br> associated_route_table_id = string<br> inbound_route_map_id = optional(string)<br> outbound_route_map_id = optional(string)<br> propagated_route_table = optional(object({<br> ids = list(string)<br> labels = optional(list(string))<br> }))<br> }))<br> internet_security_enabled = optional(bool)<br> })</pre> | n/a | yes |
| <a name="input_deploy_resource_group"></a> [deploy\_resource\_group](#input\_deploy\_resource\_group) | (Optional) Specifies whether to deploy the resource group or not. Defaults to true. | `bool` | `true` | no |
| <a name="input_dns_servers"></a> [dns\_servers](#input\_dns\_servers) | (Optional) A list of IP Addresses of DNS Servers for the Point-to-Site VPN Gateway. | `list(string)` | `[]` | no |
| <a name="input_location"></a> [location](#input\_location) | (Required) Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created. | `string` | n/a | yes |
Expand Down
2 changes: 1 addition & 1 deletion variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ variable "location" {
description = "(Required) Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created."
}

variable "connection_configurations" {
variable "connection_configuration" {
type = object({
name = string
vpn_client_address_pool = object({
Expand Down

0 comments on commit 7e45a48

Please sign in to comment.