Skip to content

Commit

Permalink
Merge pull request #66 from Terraform-GUI/fix/resources
Browse files Browse the repository at this point in the history
fix(api): #49 - add default value in ec2 arguments
  • Loading branch information
PIERRONMarc authored Oct 13, 2022
2 parents f42d10b + b9e6d2e commit 34abed4
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions api/src/Command/DataFixtures/AwsResourceFixtures.php
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ private function loadVPC(): void
->setName('pub_availability_zone')
->setType(ResourceArgument::TYPE_SELECT)
->setDefaultValue('us-east-1a')
->addValue('us-east-1a')
->addValue('us-east-1b')
->addValue('us-east-1c')
->addValue('us-east-1d')
Expand All @@ -83,6 +84,7 @@ private function loadVPC(): void
->setName('prv_availability_zone')
->setType(ResourceArgument::TYPE_SELECT)
->setDefaultValue('us-east-1a')
->addValue('us-east-1a')
->addValue('us-east-1b')
->addValue('us-east-1c')
->addValue('us-east-1d')
Expand Down

0 comments on commit 34abed4

Please sign in to comment.