1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

CloudFormation NoEchoとは

Last updated at Posted at 2022-12-03

NoEchoとは

NoEcho プロパティは、テンプレートで使用され、パラメーターの値が AWS Management Console に表示されるかどうかを指定します。
NoEcho が true に設定されている場合、パラメーターの値はコンソールに表示されません。これは、パスワードなどの機密情報を表示したくない場合に便利です。

次に、CloudFormation テンプレートで NoEcho を使用する例

Parameters:
  MyPassword:
    Type: String
    NoEcho: true

この例では、MyPassword パラメーターは、AWS Management Console に表示されない文字列です。

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?