-
-
Save KyMidd/14b538f84728162ad17125ee1ab0dfd1 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
resource "aws_secretsmanager_secret" "app1-super-secret-json" { | |
name = "app1-super-secret-json" | |
} | |
resource "aws_secretsmanager_secret_version" "app1-super-secret-json" { | |
secret_id = aws_secretsmanager_secret.app1-super-secret-json.id | |
secret_string = jsonencode({ | |
app_password = "Hunter12" | |
smtp_password = "HiMom" | |
other_password = "TheBestPasswordEvah!@" | |
}) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment