cloud-foundation-fabric/blueprints/serverless/cloud-run-explore/variables.tf

76 lines
1.7 KiB
Terraform
Raw Normal View History

variable "project_id" {
description = "Project ID"
type = string
}
variable "region" {
description = "Cloud region where resource will be deployed"
type = string
default = "europe-west1"
}
variable "run_svc_name" {
description = "Cloud Run service name"
type = string
default = "hello"
}
variable "image" {
description = "Container image to deploy"
type = string
default = "us-docker.pkg.dev/cloudrun/container/hello"
}
variable "glb_create" {
description = "Create a Global Load Balancer in front of the Cloud Run service"
type = bool
default = false
}
2023-01-26 07:42:49 -08:00
variable "custom_domain" {
description = "Custom domain for the Load Balancer"
type = string
default = null
}
variable "ingress_settings" {
description = "Ingress traffic sources allowed to call the service"
type = string
default = "all"
}
variable "security_policy" {
2023-02-02 12:47:11 -08:00
description = "Security policy (Cloud Armor) to enforce in the LB"
type = object({
enabled = bool
ip_blacklist = list(string)
path_blocked = string
})
default = {
enabled = false
ip_blacklist = null
path_blocked = null
}
}
2023-02-02 12:47:11 -08:00
variable "iap" {
description = "Identity-Aware Proxy for Cloud Run in the LB"
type = object({
enabled = bool
app_title = string
oauth2_client_name = string
})
default = {
enabled = false
app_title = null
oauth2_client_name = null
}
}
variable "iap_email" {
# Taken out of var 'iap' for convenience to override it on the CLI
description = "IAP email used for OAuth screen and accessing Cloud Run"
type = string
default = null
}