{ "AWSTemplateFormatVersion": "2010-09-09", "Parameters": { "parDbPassword": { "Type": "String" }, "parSnsTopic": { "Type": "String" } }, "Resources": { "mySSMParamStoreBastion": { "Type" : "AWS::SSM::Parameter", "Properties" : { "Description" : "Name of the bastion host in the current region", "Name" : "/rds/configuration/bastion/virginia", "Type" : "String", "Value" : "RDSBastionVirginia" } }, "mySSMParamStoreSampleInstPassword": { "Type" : "AWS::SSM::Parameter", "Properties" : { "Description" : "Password of the sample instance", "Name" : "/rds/sample/dbpassword", "Type" : "String", "Value" : { "Ref" : "parDbPassword" } } }, "mySSMParamStoreSNSTopic": { "Type" : "AWS::SSM::Parameter", "Properties" : { "Description" : "SNS Topic used for notifications", "Name" : "/rds/configuration/snsTargetArn", "Type" : "String", "Value" : { "Ref" : "parSnsTopic" } } }, "myRDSParamGroup": { "Type" : "AWS::RDS::DBParameterGroup", "Properties" : { "Description" : "custom-db-parameter-grp-oracle-ee-12-2", "Family" : "oracle-ee-12.2" } } }, "Outputs": { "myRDSParamGroup" : { "Value" : { "Ref" : "myRDSParamGroup" } } }, "Description": "alexards_storage" }