22 lines
317 B
HCL
22 lines
317 B
HCL
variable "environment_name" {
|
|
type = string
|
|
}
|
|
|
|
variable "github_owner" {
|
|
type = string
|
|
}
|
|
|
|
variable "github_repositories" {
|
|
type = list(string)
|
|
}
|
|
|
|
|
|
variable "cluster_kubeconfig" {
|
|
type = string
|
|
sensitive = true
|
|
}
|
|
|
|
variable "gpg_private_key_encryption" {
|
|
type = string
|
|
sensitive = true
|
|
} |