mirror of
https://github.com/outbackdingo/firezone.git
synced 2026-01-27 02:18:47 +00:00
This is causing issues applying because our CI terraform IAM user doesn't have the `Billing Account Administrator` role. Rather than granting such a sensitive role to our CI pipeline, I'm suggesting we create the billing budget outside the scope of the terraform config tracked in this repo. If we want it to be tracked as code, I would propose maybe we have a separate (private) repository with a separate token / IAM permissions that we can monitor separately. For the time being, I'll plan to manually create this budget in the UI. Reverts: #7836
22 lines
548 B
HCL
22 lines
548 B
HCL
variable "organization_id" {
|
|
description = "ID of a Google Cloud Organization"
|
|
}
|
|
|
|
variable "billing_account_id" {
|
|
description = "ID of a Google Cloud Billing Account which will be used to pay for resources"
|
|
}
|
|
|
|
variable "name" {
|
|
description = "Name of a Google Cloud Project"
|
|
}
|
|
|
|
variable "id" {
|
|
description = "ID of a Google Cloud Project. Can be omitted and will be generated automatically"
|
|
default = ""
|
|
}
|
|
|
|
variable "auto_create_network" {
|
|
description = "Whether to create a default network in the project"
|
|
default = "true"
|
|
}
|