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

Configure and deploy an Azure Application Gateway #77

Merged
merged 17 commits into from
May 7, 2019
Merged
Changes from 1 commit
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
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
Prev Previous commit
Next Next commit
Update variable names in variables.tf
  • Loading branch information
manojvazirani committed Apr 24, 2019
commit 311fc814dfc0a302296552f56df0a3a978085791
21 changes: 12 additions & 9 deletions infra/modules/providers/azure/app-gateway/variables.tf
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
variable "resource_group_name" {
description = "Resource group name that the app gateway will be created in."
type = "string"
}

variable "resource_group_location" {
description = "Resource group location that the app gateway will be created in. The full list of Azure regions can be found at https://azure.microsoft.com/regions."
type = "string"
}

variable "resource_tags" {
Expand All @@ -14,7 +16,7 @@ variable "resource_tags" {

variable "appgateway_name" {
description = "The name of the application gateway"
default = "cblt-appgateway"
type = "string"
}

variable "appgateway_sku_name" {
Expand All @@ -34,36 +36,37 @@ variable "appgateway_capacity" {

variable "appgateway_ipconfig_name" {
description = "The IP Config Name for the Appication Gateway to be created"
default = "appgateway_ipconfig_name"
type = "string"
}

variable "appgateway_ipconfig_subnet_id" {
description = "The Subnet ID for the Appication Gateway to be created"
type = "string"
}

variable "appgateway_frontend_port_name" {
description = "The Frontend Port Name for the Appication Gateway to be created"
default = "appgateway_frontend_port_name"
type = "string"
}

variable "appgateway_frontend_ip_configuration_name" {
description = "The Frontend IP configuration name for the Appication Gateway to be created"
default = "appgateway_frontend_ip_configuration_name"
type = "string"
}

variable "appgateway_frontend_public_ip_address_id" {
description = "The Public IP address to the frontend for the Appication Gateway to be created"
default = "appgateway_frontend_ip_configuration_name"
type = "string"
}

variable "appgateway_backend_address_pool_name" {
description = "The Backend Addres Pool Name for the Appication Gateway to be created"
default = "appgateway_backend_address_pool_name"
type = "string"
}

variable "appgateway_backend_http_setting_name" {
description = "The Backend Http Settings Name for the Appication Gateway to be created"
default = "appgateway_http_setting_name"
type = "string"
}

variable "backend_http_cookie_based_affinity" {
Expand All @@ -83,12 +86,12 @@ variable "http_listener_protocol" {

variable "appgateway_listener_name" {
description = "The Listener Name for the Appication Gateway to be created"
default = "appgateway_listener_name"
type = "string"
}

variable "appgateway_request_routing_rule_name" {
description = "The rule name to request routing for the Appication Gateway to be created"
default = "appgateway_request_routing_rule_name"
type = "string"
}

variable "request_routing_rule_type" {
Expand Down