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 variables.tf with new variables
  • Loading branch information
manojvazirani committed Apr 26, 2019
commit d5c326aa014de6f03e4162232c6a11243865ffba
17 changes: 7 additions & 10 deletions infra/modules/providers/azure/app-gateway/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -31,16 +31,19 @@ variable "appgateway_name" {

variable "appgateway_sku_name" {
description = "The SKU for the Appication Gateway to be created"
type = "string"
default = "Standard_Small"
}

variable "appgateway_tier" {
description = "The tier of the application gateway. Small/Medium/Large. More details can be found at https://azure.microsoft.com/en-us/pricing/details/application-gateway/"
type = "string"
default = "Standard"
}

variable "appgateway_capacity" {
description = "The capacity of application gateway to be created"
type = "string"
default = "1"
}

Expand All @@ -49,11 +52,6 @@ variable "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"
type = "string"
Expand All @@ -64,11 +62,6 @@ variable "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"
# type = "string"
# }

variable "appgateway_backend_address_pool_name" {
description = "The Backend Addres Pool Name for the Appication Gateway to be created"
type = "string"
Expand All @@ -81,16 +74,19 @@ variable "appgateway_backend_http_setting_name" {

variable "backend_http_cookie_based_affinity" {
description = "The Backend Http cookie based affinity for the Appication Gateway to be created"
type = "string"
default = "Disabled"
}

variable "backend_http_protocol" {
description = "The backend protocol for the Appication Gateway to be created"
type = "string"
default = "Http"
}

variable "http_listener_protocol" {
description = "The Http Listener protocol for the Appication Gateway to be created"
type = "string"
default = "Http"
}

Expand All @@ -106,5 +102,6 @@ variable "appgateway_request_routing_rule_name" {

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