Skip to content

Commit

Permalink
fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
sazaamout committed Mar 11, 2019
1 parent 83e24d1 commit 9a66374
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions modules/networking/vpc.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,9 @@ class VPC(Blueprint):
'Default': 'myVPC'
},
'UseInternetGW': {
'type': bool
'description': 'toggle the creation of internetGW on/off'
'default': True
'type': bool,
'description': 'toggle the creation of internetGW on/off',
'default': False
}
}

Expand All @@ -74,7 +74,6 @@ def create_vpc(self):
Value=VPC_ID
)
)


# create the internet gateway if needed
if variables["UseInternetGW"]:
Expand Down

0 comments on commit 9a66374

Please sign in to comment.