mirror of
https://github.com/fluxcd/flux2.git
synced 2026-05-06 01:54:43 +00:00
Add terraform files and config for GCP
Signed-off-by: Somtochi Onyekwere <somtochionyekwere@gmail.com>
This commit is contained in:
parent
f6b0c6e7ef
commit
7c1b897919
8 changed files with 310 additions and 2 deletions
37
tests/integration/terraform/gcp/variables.tf
Normal file
37
tests/integration/terraform/gcp/variables.tf
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
variable "gcp_project_id" {
|
||||
type = string
|
||||
description = "GCP project to create the resources in"
|
||||
}
|
||||
|
||||
variable "gcp_email" {
|
||||
type = string
|
||||
description = "GCP email"
|
||||
}
|
||||
|
||||
variable "gcp_region" {
|
||||
type = string
|
||||
default = "us-central1"
|
||||
description = "GCP region"
|
||||
}
|
||||
|
||||
variable "gcp_zone" {
|
||||
type = string
|
||||
default = "us-central1"
|
||||
description = "GCP region"
|
||||
}
|
||||
|
||||
|
||||
variable "gcp_keyring" {
|
||||
type = string
|
||||
description = "GCP keyring that contains crypto key for encrypting secrets"
|
||||
}
|
||||
|
||||
variable "gcp_crypto_key" {
|
||||
type = string
|
||||
description = "GCP crypto key for encrypting secrets"
|
||||
}
|
||||
|
||||
variable "tags" {
|
||||
type = map(string)
|
||||
default = {}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue