Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronwalker committed Sep 7, 2018
1 parent 6e58721 commit 29bec62
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions vars/ciinaboxVPC.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ import com.amazonaws.services.cloudformation.model.*
def call(body) {
def config = body

az = config.get('availabilityZone', 'a').toUpperCase()
ciinaboxName = config.get('ciinabox', 'ciinabox')
def az = config.get('availabilityZone', 'a').toUpperCase()
def ciinaboxName = config.get('ciinabox', 'ciinabox')
def ciinabox = ciinaboxStack(ciinaboxName, config.region)
if(ciinabox) {
def outputs = [:]
Expand Down

0 comments on commit 29bec62

Please sign in to comment.