Files
hunfabric/blueprints/serverless/cloud-run-explore/variables.tf
2023-01-26 16:42:49 +01:00

35 lines
765 B
HCL

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
}
variable "custom_domain" {
description = "Custom domain for the Load Balancer"
type = string
default = null
}