File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ Calls `aws cloudformation validate-template`
56
56
* ** BitOps Property:** ` stack-action `
57
57
* ** Environment Variable:** ` BITOPS_CFN_STACK_ACTION `
58
58
* ** default:** ` deploy `
59
- * ** required:** ` "True " `
59
+ * ** required:** ` "true " `
60
60
61
61
Controls what cloudformation action to apply on the stack. This config is a required parameter.
62
62
@@ -75,7 +75,7 @@ Controls what cloudformation action to apply on the stack. This config is a requ
75
75
* ** BitOps Property:** ` cfn-stack-name `
76
76
* ** Environment Variable:** ` BITOPS_CFN_STACK_NAME `
77
77
* ** default:** ` "" `
78
- * ** required:** ` "True " `
78
+ * ** required:** ` "true " `
79
79
80
80
Cloudformation stack name. This config is a required parameter.
81
81
@@ -113,7 +113,7 @@ Allows for param files to be used. Has the following child-properties
113
113
#### template-file
114
114
* ** BitOps Property:** ` cfn-files.template-file `
115
115
* ** Environment Variable:** ` BITOPS_CFN_TEMPLATE_FILENAME `
116
- * ** required:** ` "True " `
116
+ * ** required:** ` "true " `
117
117
118
118
Template file to apply the params against. This config is a required parameter.
119
119
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ cloudformation:
39
39
template-file :
40
40
type : string
41
41
export_env : CFN_TEMPLATE_FILENAME
42
- required : True
42
+ required : true
43
43
parameters :
44
44
type : object
45
45
properties :
Original file line number Diff line number Diff line change @@ -98,7 +98,7 @@ cd $CLOUDFORMATION_ROOT_OPERATIONS
98
98
# bash $SCRIPTS_DIR/aws/sts.get-caller-identity.sh
99
99
100
100
# always run cfn template validation first
101
- if [[ " ${CFN_TEMPLATE_VALIDATION} " == " True " ]] || [[ " ${CFN_TEMPLATE_VALIDATION} " == " true " ]]; then
101
+ if [[ " ${CFN_TEMPLATE_VALIDATION} " == " true " ]] || [[ " ${CFN_TEMPLATE_VALIDATION} " == " True " ]]; then
102
102
echo " Running Cloudformation Template Validation"
103
103
bash $CLOUDFORMATION_ROOT_SCRIPTS /scripts/cloudformation_validate.sh " $CFN_TEMPLATE_FILENAME "
104
104
fi
You can’t perform that action at this time.
0 commit comments