We can create a Systems Manager Parameter Store parameter as follows:
- Go to the AWS Systems Manager dashboard.
- Click on Parameter Store from the left sidebar.
- Click on Create parameter.
- Set Name to MySecureParameter and set Tier to Standard:
- Set Type to SecureString, KMS Key ID to alias/aws/ssm, and Value to MySecureValue:
- Scroll down and click on Create parameter. We should get a message stating that the create parameter request succeeded.
Next, we will create and attach ...