Skip to content

Commit

Permalink
update variable descriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
yeoldegrove committed Oct 6, 2021
1 parent 24f9d6c commit d97ff3e
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion azure/modules/network_spoke/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ variable "resource_group_hub_name" {
}

variable "vnet_hub_name" {
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}}"
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}}"
type = string
}

Expand Down
18 changes: 9 additions & 9 deletions azure/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ variable "vnet_name" {
}

variable "vnet_hub_address_range" {
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)"
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)"
type = string
default = "10.73.0.0/16"
validation {
Expand Down Expand Up @@ -85,13 +85,13 @@ variable "subnet_mgmt_address_range" {
}

variable "subnet_hub_gateway_name" {
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}}"
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}}"
type = string
default = ""
}

variable "subnet_hub_gateway_address_range" {
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)"
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)"
type = string
default = ""
validation {
Expand All @@ -103,13 +103,13 @@ variable "subnet_hub_gateway_address_range" {
}

variable "subnet_hub_mgmt_name" {
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}}"
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}}"
type = string
default = ""
}

variable "subnet_hub_mgmt_address_range" {
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)"
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)"
type = string
default = ""
validation {
Expand Down Expand Up @@ -194,7 +194,7 @@ variable "bastion_private_key" {
}

variable "bastion_host" {
description = "Bastion host address"
description = "Public ip address of an existing Bastion host, to use in e.g. hub_spoke network topology."
type = string
default = ""
}
Expand Down Expand Up @@ -949,7 +949,7 @@ variable "fence_agent_client_secret" {
}

variable "network_topology" {
description = "Network topolgy to use."
description = "Network topology to use."
type = string
default = "plain"
validation {
Expand All @@ -961,13 +961,13 @@ variable "network_topology" {
}

variable "vnet_hub_create" {
description = "Create Hub Network"
description = "Create Hub Network in hub_spoke network topology."
type = bool
default = false
}

variable "vnet_hub_name" {
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}}"
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}}"
type = string
default = ""
}
Expand Down

0 comments on commit d97ff3e

Please sign in to comment.