39 lines
863 B
JSON
39 lines
863 B
JSON
{
|
|
"AWSTemplateFormatVersion": "2010-09-09",
|
|
"Description": "Branch stack creation for AWS Amplify Console",
|
|
"Parameters": {
|
|
"env": {
|
|
"Type": "String"
|
|
},
|
|
"appId": {
|
|
"Type": "String"
|
|
},
|
|
"type": {
|
|
"Type": "String"
|
|
}
|
|
},
|
|
"Conditions": {
|
|
"isManual": {
|
|
"Fn::Equals": [
|
|
{
|
|
"Ref": "type"
|
|
},
|
|
"manual"
|
|
]
|
|
}
|
|
},
|
|
"Resources": {
|
|
"AmplifyBranch": {
|
|
"Condition": "isManual",
|
|
"Type": "AWS::Amplify::Branch",
|
|
"Properties": {
|
|
"BranchName": {
|
|
"Ref": "env"
|
|
},
|
|
"AppId": {
|
|
"Ref": "appId"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |