1
0
Files
terraform.examples/modules/util/awscli/variables.tf
T
2026-02-13 15:44:24 +08:00

18 lines
251 B
Terraform

variable "aws_cli_commands" {
type = string
}
variable "access_key" {
type = string
sensitive = true
}
variable "secret_key" {
type = string
sensitive = true
}
variable "session_token" {
type = string
sensitive = true
}