Skip to content
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

Plan/apply -replace and -refresh=false options are missing #184

Closed
thrashr888 opened this issue May 25, 2021 · 1 comment · Fixed by #211
Closed

Plan/apply -replace and -refresh=false options are missing #184

thrashr888 opened this issue May 25, 2021 · 1 comment · Fixed by #211
Labels
enhancement New feature or request

Comments

@thrashr888
Copy link
Member

There's a couple of new plan features that could use support added to this lib:
https://www.terraform.io/docs/cli/commands/plan.html#planning-options

@radeksimko
Copy link
Member

refresh option is already supported for both apply and plan command:

func (opt *RefreshOption) configureApply(conf *applyConfig) {
conf.refresh = opt.refresh
}

func (opt *RefreshOption) configurePlan(conf *planConfig) {
conf.refresh = opt.refresh
}

I just raised #211 to add the missing replace argument/option.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants