Skip to content

Commit

Permalink
Allow uppercase characters in environment names
Browse files Browse the repository at this point in the history
  • Loading branch information
nmaludy committed Jun 5, 2019
1 parent 13279bc commit 400f11a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tasks/deploy.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
"parameters": {
"environment": {
"description": "The environment to deploy.",
"type": "Optional[Pattern[/\\A[a-z0-9_]+\\Z/]]"
"type": "Optional[Pattern[/\\A[a-zA-Z0-9_]+\\Z/]]"
},
"environments": {
"description": "A comma separated list of environments to deploy. Takes precedence over `environment`.",
"type": "Optional[Pattern[/\\A[a-z0-9_,]+\\Z/]]"
"type": "Optional[Pattern[/\\A[a-zA-Z0-9_,]+\\Z/]]"
},
"module": {
"description": "A module to deploy across all environments.",
Expand Down

0 comments on commit 400f11a

Please sign in to comment.