You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
terraform/internal/stacks/stackruntime/testdata/mainbundle/test/sensitive-output-as-input/sensitive-output-as-input.tf

9 lines
121 B

variable "secret" {
type = string
}
output "result" {
value = sensitive(upper(var.secret))
sensitive = true
}