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.
outputs.tf300 B
View on GitHub
output "secret_lengths" {
sensitive = true
value = {
ssm_instance_token = length(var.ssm_instance_token)
ssm_stack_token = length(var.ssm_stack_token)
asm_database_password = length(var.asm_database_password)
global_shared_token = length(var.global_shared_token)
}
}