Use the nonsensitive function in the output
output "token_value" {
value = nonsensitive(tfe_team_token.test.token)
}
Output the data raw
Add the sensitive option to the output
output "token_value" {
value = tfe_team_token.test.token
sensitive = true
}
Use terraform output command
terraform output -raw token_value
本文系转载,前往查看
如有侵权,请联系 cloudcommunity@tencent.com 删除。
本文系转载,前往查看
如有侵权,请联系 cloudcommunity@tencent.com 删除。