1 Answer
- Newest
- Most votes
- Most comments
0
Any option that should depends on final user will be set as CloudFormation Parameters.
As example:
"Parameters": {
"InstancePhp": {
"Description": "PHP Server instance type",
"Type": "String",
"MinLength": "7",
"MaxLength": "41",
"ConstraintDescription": "must contain from 7 to 41 characters"
},
}
and then, reference as
"InstanceType": { "Ref": "InstancePhp" },
answered 7 years ago
