AWS Cloudformation パスワードのみ シークレット 作成

 ・パスワードのみのシークレットをCloudformationで作成するテンプレートを示す。

・パスワードは p@ssw0rd とする。


Resources:

  TestSecret:

    Type: 'AWS::SecretsManager::Secret'

    Properties:

      SecretString:  "p@ssw0rd"

      Name: "testSecret"

コメント

このブログの人気の投稿

AWS Cloudformation ImportValue Sub 併用