26 lines
668 B
Terraform
26 lines
668 B
Terraform
output "secret_id" {
|
|
description = "The id of the secret."
|
|
value = aws_secretsmanager_secret.this.id
|
|
}
|
|
|
|
output "secret_arn" {
|
|
description = "The ARN of the secret."
|
|
value = aws_secretsmanager_secret.this.arn
|
|
}
|
|
|
|
output "id" {
|
|
description = "Secret of Authenticate Token of elasticcache"
|
|
value = aws_secretsmanager_secret.this.id
|
|
sensitive = true
|
|
}
|
|
|
|
output "arn" {
|
|
description = "The id of the secret."
|
|
value = aws_secretsmanager_secret.this.arn
|
|
}
|
|
|
|
output "secret_string" {
|
|
description = "The decrypted secret string of the secret."
|
|
value = aws_secretsmanager_secret_version.this.secret_string
|
|
sensitive = true
|
|
} |