Skip to content

Commit d97ff3e

Browse files
committed
update variable descriptions
1 parent 24f9d6c commit d97ff3e

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

azure/modules/network_spoke/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ variable "resource_group_hub_name" {
2525
}
2626

2727
variable "vnet_hub_name" {
28-
description = "Already existing virtual network name used by the created infrastructure. If it's not set a new one will be created named vnet-{{var.deployment_name/terraform.workspace}}"
28+
description = "Already existing Hub virtual network name used by the created infrastructure. If it's not set a new one will be created named vnet-{{var.deployment_name/terraform.workspace}}"
2929
type = string
3030
}
3131

azure/variables.tf

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ variable "vnet_name" {
2525
}
2626

2727
variable "vnet_hub_address_range" {
28-
description = "vnet address range in CIDR notation (only used if the vnet is created by terraform or the user doesn't have read permissions in this resource. To use the current vnet address range set the value to an empty string)"
28+
description = "Hub vnet address range in CIDR notation (only used if the vnet is created by terraform or the user doesn't have read permissions in this resource. To use the current vnet address range set the value to an empty string)"
2929
type = string
3030
default = "10.73.0.0/16"
3131
validation {
@@ -85,13 +85,13 @@ variable "subnet_mgmt_address_range" {
8585
}
8686

8787
variable "subnet_hub_gateway_name" {
88-
description = "Already existing subnet name used by the created infrastructure. If it's not set a new one will be created named snet-{{var.deployment_name/terraform.workspace}}"
88+
description = "Already existing Hub subnet name used by the created infrastructure. If it's not set a new one will be created named snet-{{var.deployment_name/terraform.workspace}}"
8989
type = string
9090
default = ""
9191
}
9292

9393
variable "subnet_hub_gateway_address_range" {
94-
description = "subnet address range in CIDR notation (only used if the subnet is created by terraform or the user doesn't have read permissions in this resource. To use the current vnet address range set the value to an empty string)"
94+
description = "Hub subnet address range in CIDR notation (only used if the subnet is created by terraform or the user doesn't have read permissions in this resource. To use the current vnet address range set the value to an empty string)"
9595
type = string
9696
default = ""
9797
validation {
@@ -103,13 +103,13 @@ variable "subnet_hub_gateway_address_range" {
103103
}
104104

105105
variable "subnet_hub_mgmt_name" {
106-
description = "Already existing subnet name used by the created infrastructure. If it's not set a new one will be created named snet-{{var.deployment_name/terraform.workspace}}"
106+
description = "Already existing Hub subnet name used by the created infrastructure. If it's not set a new one will be created named snet-{{var.deployment_name/terraform.workspace}}"
107107
type = string
108108
default = ""
109109
}
110110

111111
variable "subnet_hub_mgmt_address_range" {
112-
description = "subnet address range in CIDR notation (only used if the subnet is created by terraform or the user doesn't have read permissions in this resource. To use the current vnet address range set the value to an empty string)"
112+
description = "Hub subnet address range in CIDR notation (only used if the subnet is created by terraform or the user doesn't have read permissions in this resource. To use the current vnet address range set the value to an empty string)"
113113
type = string
114114
default = ""
115115
validation {
@@ -194,7 +194,7 @@ variable "bastion_private_key" {
194194
}
195195

196196
variable "bastion_host" {
197-
description = "Bastion host address"
197+
description = "Public ip address of an existing Bastion host, to use in e.g. hub_spoke network topology."
198198
type = string
199199
default = ""
200200
}
@@ -949,7 +949,7 @@ variable "fence_agent_client_secret" {
949949
}
950950

951951
variable "network_topology" {
952-
description = "Network topolgy to use."
952+
description = "Network topology to use."
953953
type = string
954954
default = "plain"
955955
validation {
@@ -961,13 +961,13 @@ variable "network_topology" {
961961
}
962962

963963
variable "vnet_hub_create" {
964-
description = "Create Hub Network"
964+
description = "Create Hub Network in hub_spoke network topology."
965965
type = bool
966966
default = false
967967
}
968968

969969
variable "vnet_hub_name" {
970-
description = "Already existing virtual network name used by the created infrastructure. If it's not set a new one will be created named vnet-{{var.deployment_name/terraform.workspace}}"
970+
description = "Already existing Hub virtual network name used by the created infrastructure. If it's not set a new one will be created named vnet-{{var.deployment_name/terraform.workspace}}"
971971
type = string
972972
default = ""
973973
}

0 commit comments

Comments
 (0)