Skip to content

Commit

Permalink
Fix typo in Example Allowed Values (#603)
Browse files Browse the repository at this point in the history
* Fix typo in Allowed Values

was mode not node

* Fix Other Typo in Allowed Values

same thing mode -> node

* Add typo fix to test template
  • Loading branch information
whithajess authored and phobologic committed Oct 31, 2016
1 parent 6eceb6b commit d1f2359
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions examples/Redshift.py
Expand Up @@ -30,7 +30,7 @@
Default="single-node",
AllowedValues=[
"single-node",
"multi-mode"
"multi-node"
],
))

Expand Down Expand Up @@ -72,7 +72,7 @@
conditions = {
"IsMultiNodeCluster": Equals(
Ref("ClusterType"),
"multi-mode"
"multi-node"
),
}

Expand Down
4 changes: 2 additions & 2 deletions tests/examples_output/Redshift.template
Expand Up @@ -6,7 +6,7 @@
{
"Ref": "ClusterType"
},
"multi-mode"
"multi-node"
]
}
},
Expand Down Expand Up @@ -38,7 +38,7 @@
"ClusterType": {
"AllowedValues": [
"single-node",
"multi-mode"
"multi-node"
],
"Default": "single-node",
"Description": "The type of the cluster",
Expand Down

0 comments on commit d1f2359

Please sign in to comment.