mirror of
https://github.com/hashicorp/terraform.git
synced 2026-04-25 16:17:26 -04:00
9 lines
121 B
Terraform
9 lines
121 B
Terraform
|
|
variable "secret" {
|
||
|
|
type = string
|
||
|
|
}
|
||
|
|
|
||
|
|
output "result" {
|
||
|
|
value = sensitive(upper(var.secret))
|
||
|
|
sensitive = true
|
||
|
|
}
|