Skip to main content
Gists are examples that demonstrate a concept, but are not actively maintained and may not work in your environment or current versions of Atmos without adaptations.
main.tf347 B
View on GitHub
terraform {
required_version = ">= 1.3.0"
}

variable "ssm_instance_token" {
type = string
sensitive = true
}

variable "ssm_stack_token" {
type = string
sensitive = true
}

variable "asm_database_password" {
type = string
sensitive = true
}

variable "global_shared_token" {
type = string
sensitive = true
}