feat: new iam-user module and secretsmanager-2025 module
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
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
|
||||
}
|
||||
Reference in New Issue
Block a user