scenarios/apim-baseline/terraform/modules/gateway/certificate/variables.tf (47 lines of code) (raw):
variable "location" {
type = string
description = "The Azure location in which the deployment is happening"
default = "eastus"
}
variable "sharedResourceGroupName" {
type = string
description = "Resource group with deploymnent Identity"
}
variable "keyVaultName" {
type = string
description = ""
}
variable "deploymentIdentityName" {
type = string
description = "deployment identity name"
}
variable "keyvaultId" {
type = string
description = "for giving permission to deployment identity"
}
variable "appGatewayFqdn" {
type = string
description = "The Azure location to deploy to"
default = "apim.example.com"
}
variable "certificate_path" {
type = string
description = ""
default = null
}
variable "certificate_password" {
type = string
description = ""
}
variable "appGatewayCertType" {
description = "selfsigned will create a self-signed certificate for the APPGATEWAY_FQDN. custom will use an existing certificate in pfx format that needs to be available in the [certs](../../certs) folder and named appgw.pfx "
default = "selfsigned"
}
variable "deploymentSubnetId" {
type = string
description = "The subnet id where the deployment will run"
}
variable "deploymentStorageName" {
type = string
description = "The name of the storage account to use for deployment"
}