-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathvariables.tf
More file actions
32 lines (27 loc) · 777 Bytes
/
Copy pathvariables.tf
File metadata and controls
32 lines (27 loc) · 777 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
28
29
30
31
32
variable "project_id" {
description = "project id"
}
variable "region" {
description = "the region or zone where the cluster will be created"
default = "asia-south1"
}
variable "repository_id" {
description = "the Google Cloud Artifactory Repository ID"
default = "my-demos"
}
variable "repository_description" {
description = "the Google Cloud Artifactory Repository description"
default = "my docker repository"
}
variable "repo_sa" {
description = "the repo admin account"
default = "repo-sa"
}
variable "repo_sa_roles" {
# possible values gcloud iam roles list | grep -i artifactRegistry
description = "The roles to assign to the repository sa"
type = list(string)
default = [
"roles/artifactregistry.reader",
]
}