This project is mirrored from https://:*****@github.com/hashicorp/terraform.git.
Pull mirroring failed .
Repository mirroring has been paused due to too many failed attempts. It can be resumed by a project maintainer.
Repository mirroring has been paused due to too many failed attempts. It can be resumed by a project maintainer.
- 12 Jan, 2021 5 commits
-
-
Nick Fagerlund authored
-
Nick Fagerlund authored
-
Pam Selle authored
The version command, although not the mightiest of our commands, did not have a page among our docs.
-
Pam Selle authored
Chage backend.tmpl to config.tmpl in Maps example,
-
Alisdair McDiarmid authored
cli: Fix rendering of long integers
-
- 11 Jan, 2021 15 commits
-
-
Pam Selle authored
Update gcs.html.md
-
Pam Selle authored
-
Pam Selle authored
Remove get-plugins flag
-
Pam Selle authored
-
Pam Selle authored
Remove verify-plugins flag
-
Pam Selle authored
-
Pam Selle authored
Remove state lock flags from init
-
James Bardin authored
Refresh during destroy
-
James Bardin authored
provisioners: ensure context cancel is never nil in builtin provisioners
-
Kristin Laemmert authored
-
Jacob Martin authored
* Add test for module nesting without resources. * Add test * Fix showing resources when a module has no resources, only submodules.
-
Pam Selle authored
-
Pam Selle authored
Remove the no-op get-plugins flag
-
Pam Selle authored
Corrected minor typo
-
Pam Selle authored
This flag does not do anything, and so this removes the mention in the CLI docs and the parsing of the flag variable
-
- 09 Jan, 2021 1 commit
-
-
Cladius Fernando authored
On Windows, the file must be named named terraform.rc => On Windows, the file must be named terraform.rc
-
- 08 Jan, 2021 7 commits
-
-
James Bardin authored
get rid of the mutation of the plans.Plan and return values.
-
James Bardin authored
These tests were not previously running a refresh, and hence did not expect the resources to be read.
-
James Bardin authored
Because the destroy plan only creates the necessary changes for apply to remove all the resources, it does no reading of resources or data sources, leading to stale data in the state. In most cases this is not a problem, but when a provider configuration is using resource values, the provider may not be able to run correctly during apply. In prior versions of terraform, the implicit refresh that happened during `terraform destroy` would update the data sources and remove missing resources from state as required. The destroy plan graph has a minimal amount of information, so it is not feasible to work the reading of resources into the operation without completely replicating the normal plan graph, and updating the plan graph and all destroy node implementation is also a considerable amount of refactoring. Instead, we can run a normal plan which is used to refresh the state before creating the destroy plan. This brings back similar behavior to core versions prior to 0.14, and the refresh can still be skipped using the `-refresh=false` cli flag.
-
James Bardin authored
-
James Bardin authored
The context used for Stop is more appropriately tied to the lifetime of the provisioner rather than a call to the ProvisionResource method. In some cases Stop can be called before ProvisionResource, causing a panic the provisioner. Rather than adding nil checks to the CancelFunc call for Stop, create a base context to use for cancellation with both Stop and Close methods.
-
Pam Selle authored
Staticcheck fixes in terraform package
-
Alisdair McDiarmid authored
Recent changes to the human-readable rendering of outputs and console values led to long integer values being presented in scientific notation (e.g. 1.2345678e+07). While technically correct, this is an unusual way to present integer values. This commit changes the formatting mode to 'f', which never uses scientific notation and displays integer values as a sequence of digits instead (e.g. 12345678).
-
- 07 Jan, 2021 8 commits
-
-
hashicorp-ci authored
-
hashicorp-ci authored
-
Pam Selle authored
-
Pam Selle authored
validate: ignore providers with no configuration
-
James Bardin authored
remove unused testdata files
-
James Bardin authored
these are no longer referenced in any tests
-
Pam Selle authored
Fixes within the terraform package to remove staticcheck errors
-
Robin Schulz authored
Just a typo
-
- 06 Jan, 2021 4 commits
-
-
Alisdair McDiarmid authored
Upgrade HCL to v2.8.2
-
Chris Arcand authored
Remove documentation on 'CONFIRM_DESTROY'
-
Chris Arcand authored
This variable mechanism was replaced long ago with a explicit `Allow destroy plans` setting on a Terraform Cloud workspace, and no longer does anything: https://www.terraform.io/docs/cloud/workspaces/settings.html#destruction-and-deletion Rather than mention this new mechanism at all though, I've removed the requisite from here entirely - the reason being that a consideration like this is no different from other permission concerns (e.g. "You must have Apply permission on a workspace to `apply`"), and without enumerating _all_ of these here - which doesn't seem appropriate - we just remove this concern entirely.
-
Alisdair McDiarmid authored
core: Fix sensitive value variable validation
-