Skip to content

Commit a5bc4b0

Browse files
committed
Boolean to lowercase
1 parent b80ea0d commit a5bc4b0

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ Calls `aws cloudformation validate-template`
5656
* **BitOps Property:** `stack-action`
5757
* **Environment Variable:** `BITOPS_CFN_STACK_ACTION`
5858
* **default:** `deploy`
59-
* **required:** `"True"`
59+
* **required:** `"true"`
6060

6161
Controls what cloudformation action to apply on the stack. This config is a required parameter.
6262

@@ -75,7 +75,7 @@ Controls what cloudformation action to apply on the stack. This config is a requ
7575
* **BitOps Property:** `cfn-stack-name`
7676
* **Environment Variable:** `BITOPS_CFN_STACK_NAME`
7777
* **default:** `""`
78-
* **required:** `"True"`
78+
* **required:** `"true"`
7979

8080
Cloudformation stack name. This config is a required parameter.
8181

@@ -113,7 +113,7 @@ Allows for param files to be used. Has the following child-properties
113113
#### template-file
114114
* **BitOps Property:** `cfn-files.template-file`
115115
* **Environment Variable:** `BITOPS_CFN_TEMPLATE_FILENAME`
116-
* **required:** `"True"`
116+
* **required:** `"true"`
117117

118118
Template file to apply the params against. This config is a required parameter.
119119

bitops.schema.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ cloudformation:
3939
template-file:
4040
type: string
4141
export_env: CFN_TEMPLATE_FILENAME
42-
required: True
42+
required: true
4343
parameters:
4444
type: object
4545
properties:

deploy.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ cd $CLOUDFORMATION_ROOT_OPERATIONS
9898
# bash $SCRIPTS_DIR/aws/sts.get-caller-identity.sh
9999

100100
# 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
102102
echo "Running Cloudformation Template Validation"
103103
bash $CLOUDFORMATION_ROOT_SCRIPTS/scripts/cloudformation_validate.sh "$CFN_TEMPLATE_FILENAME"
104104
fi

0 commit comments

Comments
 (0)