-
-
Notifications
You must be signed in to change notification settings - Fork 1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Terraform 0.12 support #731
Merged
Changes from 17 commits
Commits
Show all changes
58 commits
Select commit
Hold shift + click to select a range
42fa65c
Switch to HCL2 parser
brikis98 6466cd5
Update all the test fixtures
brikis98 5222aab
Update all the tests
brikis98 b42fd86
Fix compile error and bool check
brikis98 0e3ddc0
Fix configstack test
brikis98 2d35949
Fix dependencies syntax
brikis98 73bb229
Fix a few more configstack tests
brikis98 1bfa50f
Fix terraform block syntax
brikis98 77ce597
Attr should be called inputs
brikis98 50cfb11
Remove missing references to terraform.tfvars
brikis98 ab495c9
Fix handling of tags
brikis98 e88e106
Fix include syntax
brikis98 b2b7f4b
Set inputs as env vars
brikis98 0611d5a
Run make fmt
brikis98 477ac27
Fix string handling. Add integration test case for input handling.
brikis98 08402c1
Update docs
brikis98 1faf766
Document inputs
brikis98 9fe446c
Rename get_tfvars_dir and get_parent_tfvars_dir
brikis98 722b6f2
Add migration guide
brikis98 ae9e4b1
Merge branch 'master' into tf12
brikis98 02b0eb2
Remove TF 0.12 note
brikis98 78cb92f
Update Terraform version check
brikis98 9857bbb
Update to new circle image with Terraform 0.12 on it
brikis98 fdce37c
Don't override env vars user has already set
brikis98 993e195
Add tests for setTerragruntInputsAsEnvVars
brikis98 47391c6
Wrap example in inputs attr
brikis98 9f19fd9
Add comments to explain testCase copying
brikis98 b00c3f9
Fix terraform init -from-module behavior
brikis98 9c6c2f2
Apply suggestions from code review
brikis98 dc5f0aa
Test get_env helper in inputs block
brikis98 249662e
Proper indentation
brikis98 e951bc2
Fix download dir deletion/creation
brikis98 07a4c49
Update all Terraform test fixtures to 0.12 syntax
brikis98 80ecfba
Work around Terraform issue with 'init -get=false'
brikis98 78792ed
Re-order init args
brikis98 b5a4d20
Switch to go-getter for downloading source
brikis98 fb91862
Fix config block in terraform_remote_state
brikis98 ea56319
Fix how we pass S3 bucket name to config stacks
brikis98 72d46bb
Execute hooks around download source
brikis98 76b432c
Update README on how we download
brikis98 837fb4f
Fix state equality check
brikis98 8d76430
Don't automatically apply external dependencies in non-interactive mode
brikis98 2d79cde
Fix configstack tests
brikis98 8d8dcc7
Skip external dependencies test
brikis98 65741db
Put tmp dir into configured download dir
brikis98 b0ca9e4
Fix tmp dir location
brikis98 cc241e8
Try CopyFolderContents implementation based on filepath.Glob
brikis98 bb61c8d
Exztract UniqueId helper
brikis98 e239808
Use UniqueId in temp folder creation. Defer temp folder deletion.
brikis98 58556e0
Try to add sleep on S3 bucket creation
brikis98 68f6a1b
Increase sleep
brikis98 71b72e1
Replace filepath.Walk in tests
brikis98 f9c08ed
Fix dest dir in copyfoldercontents
brikis98 31fa15b
Create parent dir before copying
brikis98 866e689
Remove deprecated S3 settings
brikis98 a531167
Slightly clearer logging. Remove sleep as it doesn't help.
brikis98 2aa4573
Do S3 bucket creation in retry loop
brikis98 264812d
Skip symlinks
brikis98 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why not use
defer
here?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done: e239808