-
Notifications
You must be signed in to change notification settings - Fork 59
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
Add --backend-config cli option to tfmigrate plan/apply #94
Changes from all commits
32aa648
414d00d
7b8e717
d789a4d
f76df1b
fc6422e
6cb4eca
0f5711e
2bfdbe2
232c8ce
bcae4e1
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,7 +17,7 @@ services: | |
- localstack | ||
|
||
localstack: | ||
image: localstack/localstack:0.11.3 | ||
image: localstack/localstack:0.14.4 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. just for development for arm64 There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. On Apple Silicon, my development environment, docker image which has There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 👌 |
||
ports: | ||
- "4566:4566" | ||
environment: | ||
|
@@ -29,6 +29,6 @@ services: | |
- "./scripts/localstack:/docker-entrypoint-initaws.d" # initialize scripts on startup | ||
|
||
dockerize: | ||
image: jwilder/dockerize | ||
image: powerman/dockerize:0.16.0 | ||
depends_on: | ||
- localstack |
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.
The tfmigrate apply command also uses the same logic, so we need to add this flag to the tfmigrate apply command too.
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.
Add --backend-config to
tfmigrate apply
in 6cb4eca