Skip to content

Commit

Permalink
Updating some modules variables files (#363)
Browse files Browse the repository at this point in the history
  • Loading branch information
Chambras authored Aug 24, 2021
1 parent 9ea0738 commit db2f96b
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 2 deletions.
File renamed without changes.
3 changes: 2 additions & 1 deletion src/terraform/modules/bastion/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,6 @@ variable "ipconfig_name" {
}

variable "tags" {
type = map(string)
description = "A mapping of tags which should be assigned to the resource."
type = map(string)
}
File renamed without changes.
19 changes: 18 additions & 1 deletion src/terraform/modules/firewall/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,66 +3,83 @@

variable "sub_id" {
description = "The subscription ID to deploy the Firewall into"
type = string
sensitive = true
}

variable "location" {
description = "The location/region to keep all your network resources. To get the list of all locations with table format from azure cli, run 'az account list-locations -o table'"
type = string
}

variable "resource_group_name" {
description = "A container that holds related resources for an Azure solution"
type = string
}

variable "vnet_name" {
description = "The name of the Firewall virtual network"
type = string
}

variable "vnet_address_space" {
description = "The address space to be used for the Firewall virtual network"
type = list(string)
}

variable "firewall_sku" {
description = "The SKU for Azure Firewall"
type = string
}

variable "client_address_space" {
description = "The address space to be used for the Firewall subnets"
type = string
}

variable "firewall_client_subnet_name" {
description = "The name of the Firewall client traffic subnet"
type = string
}

variable "firewall_management_subnet_name" {
description = "The name of the Firewall management traffic subnet"
type = string
}

variable "firewall_name" {
description = "The name of the Firewall"
type = string
}

variable "firewall_policy_name" {
description = "The name of the firewall policy"
type = string
}

variable "client_ipconfig_name" {
description = "The name of the Firewall Client IP Configuration"
type = string
}

variable "client_publicip_name" {
description = "The name of the Firewall Client Public IP"
type = string
}

variable "management_ipconfig_name" {
description = "The name of the Firewall Management IP Configuration"
type = string
}

variable "management_publicip_name" {
description = "The name of the Firewall Management Public IP"
type = string
}

variable "log_analytics_workspace_resource_id" {
description = "The resource id of the Log Analytics Workspace"
type = string
}

variable "tags" {
Expand All @@ -78,5 +95,5 @@ variable "tags" {
variable "disable_snat_ip_range" {
description = "The address space to be used to ensure that SNAT is disabled."
default = ["0.0.0.0/0"]
type = list
type = list(any)
}

0 comments on commit db2f96b

Please sign in to comment.