Changing a standard parameter to an advanced parameter
Use the following procedure to change an existing standard parameter to an advanced parameter. For information about how to create a new advanced parameter, see Creating Parameter Store parameters in Systems Manager.
- Console
-
To change a standard parameter to an advanced parameter
Open the AWS Systems Manager console at https://console.aws.amazon.com/systems-manager/
. In the navigation pane, choose Parameter Store.
-
Choose a parameter, and then choose Edit.
-
For Description, enter information about this parameter.
-
Choose Advanced.
-
For Value, enter the value of this parameter. Advanced parameters have a maximum value limit of 8 KB.
-
Choose Save changes.
- AWS CLI
-
You can override the default setting by specifying the parameter tier using the
PutParameteroperation. For example, you might want to share the default AMI value across AWS accounts. The following AWS CLI example explicitly sets the parameter tier toAdvancedfor thedefault-amiparameter in Linux & macOS.aws ssm put-parameter \ --region us-east-1 \ --name "default-ami" \ --type "String" \ --value "t3.micro" \ --tier "Advanced"