-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_variables.tf
59 lines (52 loc) · 2.12 KB
/
_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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# ---------------------------------------------------------------------------------------------------------------------
# General
# ---------------------------------------------------------------------------------------------------------------------
variable "email_domain" {
description = "Domain name used for my emails. I put it in a variable because this repo is public."
type = string
}
# ---------------------------------------------------------------------------------------------------------------------
# Google Cloud Platform
# ---------------------------------------------------------------------------------------------------------------------
variable "gcp_organization_id" {
description = "GCP organization id."
type = string
}
variable "gcp_admin_email" {
description = "My GCP admin email."
type = string
}
variable "gcp_billing_account_id" {
description = "Billing account id for this project."
type = string
default = null
}
# variable "gcp_iam_project_id" {
# description = "IAM account project ID."
# type = string
# default = null
# }
# ---------------------------------------------------------------------------------------------------------------------
# Terraform Cloud
# ---------------------------------------------------------------------------------------------------------------------
variable "tfe_organization_name" {
description = "If Terraform Cloud is enabled, you must specify the organization name."
type = string
default = null
}
variable "tfe_oauth_token_id" {
description = "Terraform Cloud OAuth token id."
type = string
}
# ---------------------------------------------------------------------------------------------------------------------
# Project: domains
# ---------------------------------------------------------------------------------------------------------------------
variable "domains_runner_token" {
description = <<-EOF
Runner registration token. Get it with:
```
gh api -p everest -X POST repos/{owner}/{repo}/actions/runners/registration-token \| jq .token
```
EOF
type = string
}