-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathvariables.tf
More file actions
27 lines (27 loc) · 890 Bytes
/
variables.tf
File metadata and controls
27 lines (27 loc) · 890 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
variable "project" {
description = "GCP project"
}
variable "zone" {
description = "GCP zone (e.g. : europe-west1-d)"
}
variable "region" {
description = "GCP region (e.g. : europe-west1)"
}
variable "chartmuseum_docker_image" {
description = "Docker image to deploy (e.g : europe-west1-docker.pkg.dev/YOURPROJECT/docker-public/chartmuseum:xxx)"
}
variable "bucket_name" {
description = "Name of the bucket where to store charts"
}
variable "dns_managed_zone_name" {
description = "DNS zone name where to setup Cloud Run custom domain"
}
variable "dns_name" {
description = "Custom domain to service Cloud Run service (e.g. : myservice.mydomain.com)"
}
variable "project_secret" {
description = "Project where to lookup for secret injected in Cloud Run container"
}
variable "secret_name" {
description = "Name of the secret to lookup and inject in Cloud Run container"
}