-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
30 lines (22 loc) · 926 Bytes
/
variables.tf
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
variable "google_cloud_project_id" {
type = string
description = "The ID of the google cloud project to deploy resources in."
}
variable "google_cloud_region" {
type = string
description = "The google cloud region to deploy resources in."
}
variable "github_account" {
type = string
description = "The name of the GitHub account to link to the workload identity federation provider. The provider is used to authenticate with google cloud in GitHub Actions workflows."
}
variable "maintainer_service_account_names" {
type = set(string)
default = ["default"]
description = "The names of each maintainer IAM service account that should be created. They'll automatically be prefixed with 'maintainer-'."
}
variable "deletion_protection" {
type = bool
default = true
description = "Apply deletion protection to the event store and cloud storage bucket."
}