Skip to content

Instantly share code, notes, and snippets.

@babakc
Created May 18, 2017 08:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save babakc/1767785aab80214b7d15a0d51dc1e31d to your computer and use it in GitHub Desktop.
Save babakc/1767785aab80214b7d15a0d51dc1e31d to your computer and use it in GitHub Desktop.
{
"AWSTemplateFormatVersion": "2010-09-09",
"Description": "",
"Parameters": {
},
"Resources": {
"RDSDBI3N4HT": {
"Type": "AWS::RDS::DBInstance",
"Properties": {
"AllocatedStorage": "200",
"DBInstanceClass": "db.m1.small",
"Engine": "sqlserver-se",
"EngineVersion": "12.00",
"LicenseModel": "license-included",
"MasterUserPassword": "zePassw0rd!",
"MasterUsername": "root",
"Iops": "0",
"PreferredBackupWindow": "08:00-10:00",
"BackupRetentionPeriod": "7",
"OptionGroupName": {
"Ref": "RDSOG43B23"
}
}
},
"RDSOG43B23": {
"Type": "AWS::RDS::OptionGroup",
"Properties": {
"EngineName": "sqlserver-se",
"MajorEngineVersion": "12.00",
"OptionGroupDescription": "MSSQL HA Option Group",
"OptionConfigurations": [
{
"OptionName": "Mirroring"
}
]
}
}
},
"Outputs": {
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment