Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updating some modules variables files #363

Merged
merged 2 commits into from
Aug 24, 2021
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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)
}
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)
}