terraform/command
Martin Atkins 88e76fa9ef configs/configschema: Introduce the NestingGroup mode for blocks
In study of existing providers we've found a pattern we werent previously
accounting for of using a nested block type to represent a group of
arguments that relate to a particular feature that is always enabled but
where it improves configuration readability to group all of its settings
together in a nested block.

The existing NestingSingle was not a good fit for this because it is
designed under the assumption that the presence or absence of the block
has some significance in enabling or disabling the relevant feature, and
so for these always-active cases we'd generate a misleading plan where
the settings for the feature appear totally absent, rather than showing
the default values that will be selected.

NestingGroup is, therefore, a slight variation of NestingSingle where
presence vs. absence of the block is not distinguishable (it's never null)
and instead its contents are treated as unset when the block is absent.
This then in turn causes any default values associated with the nested
arguments to be honored and displayed in the plan whenever the block is
not explicitly configured.

The current SDK cannot activate this mode, but that's okay because its
"legacy type system" opt-out flag allows it to force a block to be
processed in this way anyway. We're adding this now so that we can
introduce the feature in a future SDK without causing a breaking change
to the protocol, since the set of possible block nesting modes is not
extensible.
2019-04-10 14:53:52 -07:00
..
clistate terraform: Ugly huge change to weave in new State and Plan types 2018-10-16 19:11:09 -07:00
e2etest command/e2etest: Temporarily disable tests that access network 2018-11-19 09:02:35 -08:00
format configs/configschema: Introduce the NestingGroup mode for blocks 2019-04-10 14:53:52 -07:00
jsonconfig configs/configschema: Introduce the NestingGroup mode for blocks 2019-04-10 14:53:52 -07:00
jsonplan command/show: add provider name to resource changes (#20711) 2019-03-15 13:20:43 -07:00
jsonprovider configs/configschema: Introduce the NestingGroup mode for blocks 2019-04-10 14:53:52 -07:00
jsonstate `terraform show` and `terraform providers schema -json` should return valid json (#20697) 2019-03-14 14:52:07 -07:00
test-fixtures command/show: add provider name to resource changes (#20711) 2019-03-15 13:20:43 -07:00
testdata Have backend operations properly unlock state 2017-02-15 14:41:55 -05:00
012_config_upgrade.go configs/configupgrade: detect possible relative module sources (#20646) 2019-03-13 11:17:14 -07:00
apply.go commands: make sure the correct flagset is used 2018-11-23 16:13:34 +01:00
apply_destroy_test.go command/state: lock when pushing state 2018-11-20 11:15:16 +01:00
apply_test.go command: Apply tests with realistic mock providers 2019-02-11 17:46:55 -08:00
autocomplete.go terraform: Ugly huge change to weave in new State and Plan types 2018-10-16 19:11:09 -07:00
autocomplete_test.go command: use newer version of "complete" library 2017-12-05 10:24:04 -08:00
cli_ui.go adding new AskSecret to ColorizeUi 2015-04-29 13:07:13 -05:00
cli_ui_test.go command/*: colors on error messages (red) 2014-07-12 20:59:16 -07:00
command.go Implement the Enterprise enhanced remote backend 2018-08-03 22:22:55 +02:00
command_test.go command: "terraform init" can partially initialize for 0.12upgrade 2019-01-14 11:33:21 -08:00
console.go commands: make sure the correct flagset is used 2018-11-23 16:13:34 +01:00
console_interactive.go command: update "terraform console" for HCL2 2018-10-16 18:46:46 -07:00
console_interactive_solaris.go command: split out and tag code so compilation works on Solaris 2016-11-14 00:32:01 -08:00
console_test.go Push plugin discovery down into command package 2017-06-09 14:03:59 -07:00
debug_command.go Add debug command with json2dot 2016-11-21 11:59:20 -05:00
debug_json2dot.go commands: make sure the correct flagset is used 2018-11-23 16:13:34 +01:00
debug_json2dot_test.go cleanup temp files from command tests 2018-03-28 13:08:38 -04:00
flag_kv.go terraform: ugly huge change to weave in new HCL2-oriented types 2018-10-16 18:46:46 -07:00
flag_kv_test.go command: use helper/variables for flags and parsing 2016-12-10 14:30:40 -05:00
fmt.go command: Restore single-file support in "terraform fmt" 2019-01-17 14:21:18 -08:00
fmt_test.go command: Restore single-file support in "terraform fmt" 2019-01-17 14:21:18 -08:00
get.go command: Update "terraform get" to use the new module installer 2019-01-17 16:52:34 -08:00
get_test.go command: Update "terraform get" to use the new module installer 2019-01-17 16:52:34 -08:00
graph.go commands: make sure the correct flagset is used 2018-11-23 16:13:34 +01:00
graph_test.go command: Fix TestGraph_plan 2018-10-16 19:14:11 -07:00
hook_module_install.go Move module install functionality over to internal/initwd 2019-01-14 11:33:21 -08:00
hook_ui.go command: go fmt 2018-10-16 19:14:11 -07:00
hook_ui_test.go command: Fix TestUiHookPostApply_emptyState 2019-01-31 12:25:57 +00:00
import.go command: Consistency implement and document parallelism default of 10 2019-03-06 09:25:36 -05:00
import_test.go Bump installer protocol version to 5 and separate client and server protocol references 2019-01-16 15:07:57 -06:00
init.go Only display status link if public registry used 2019-04-05 16:49:27 -04:00
init_test.go plugin/discovery: Return tfdiags from Get 2019-03-18 12:21:27 -04:00
internal_plugin.go create a new InternalProviders test 2018-01-05 10:59:30 -05:00
internal_plugin_list.go v0.11.2 2018-01-09 23:13:33 +00:00
internal_plugin_test.go create a new InternalProviders test 2018-01-05 10:59:30 -05:00
meta.go core: add a context to the UIInput interface 2019-03-08 10:24:40 +01:00
meta_backend.go core: add a context to the UIInput interface 2019-03-08 10:24:40 +01:00
meta_backend_migrate.go core: add a context to the UIInput interface 2019-03-08 10:24:40 +01:00
meta_backend_test.go grammatical updates to comments and docs (#20195) 2019-03-21 14:05:41 -07:00
meta_config.go check for errors when loading a backend config 2019-03-12 17:57:26 -04:00
meta_new.go terraform: Ugly huge change to weave in new State and Plan types 2018-10-16 19:11:09 -07:00
meta_test.go commands: make sure the correct flagset is used 2018-11-23 16:13:34 +01:00
meta_vars.go command: Specialized error message for var decls in tfvars 2019-02-22 18:04:01 -08:00
output.go commands: make sure the correct flagset is used 2018-11-23 16:13:34 +01:00
output_test.go command: Restore the "terraform output" functionality 2018-10-16 19:14:11 -07:00
plan.go Mildwonkey/012 docs updated (#20542) 2019-03-01 12:30:51 -08:00
plan_test.go command: Specialized error message for var decls in tfvars 2019-02-22 18:04:01 -08:00
plugins.go update provisioners for multiple processes 2018-10-16 19:14:11 -07:00
plugins_lock.go Standardize on log level "WARN" rather than "WARNING" 2018-01-16 18:05:26 -08:00
plugins_lock_test.go cleanup temp files from command tests 2018-03-28 13:08:38 -04:00
plugins_test.go plugin/discovery: Parse warnings from TF Registry 2019-03-18 12:21:27 -04:00
providers.go command: allow -no-color option on "providers" command 2018-12-17 10:55:16 -08:00
providers_schema.go remove indentation from json output of `show` and `providers schema` (#20623) 2019-03-11 07:29:36 -07:00
providers_schema_test.go `terraform show` and `terraform providers schema -json` should return valid json (#20697) 2019-03-14 14:52:07 -07:00
providers_test.go command: Fix tests for "terraform providers" 2018-10-16 19:14:11 -07:00
push.go command: remove "terraform push" 2018-10-16 18:24:47 -07:00
refresh.go command: Consistency implement and document parallelism default of 10 2019-03-06 09:25:36 -05:00
refresh_test.go command/state: lock when pushing state 2018-11-20 11:15:16 +01:00
show.go command/show: refresh is required to show remote state (#20818) 2019-03-25 16:28:35 -04:00
show_test.go `terraform show` and `terraform providers schema -json` should return valid json (#20697) 2019-03-14 14:52:07 -07:00
state_command.go Thread the environment through all commands 2017-02-28 16:35:46 -05:00
state_list.go command: Fix various issues in the "terraform state ..." subcommands 2019-03-18 09:19:55 -07:00
state_list_test.go command/state: update and fix the state list command 2018-10-19 16:31:12 +02:00
state_meta.go command: Fix various issues in the "terraform state ..." subcommands 2019-03-18 09:19:55 -07:00
state_mv.go command: Fix various issues in the "terraform state ..." subcommands 2019-03-18 09:19:55 -07:00
state_mv_test.go command: Fix various issues in the "terraform state ..." subcommands 2019-03-18 09:19:55 -07:00
state_pull.go commands: make sure the correct flagset is used 2018-11-23 16:13:34 +01:00
state_pull_test.go command: Use statemgr.Import and statemgr.Export for state push and pull 2018-11-19 09:02:35 -08:00
state_push.go command/state: add proper locking 2019-01-08 14:57:52 +01:00
state_push_test.go command/state: lock when pushing state 2018-11-20 11:15:16 +01:00
state_rm.go command: Fix various issues in the "terraform state ..." subcommands 2019-03-18 09:19:55 -07:00
state_rm_test.go command: Fix various issues in the "terraform state ..." subcommands 2019-03-18 09:19:55 -07:00
state_show.go command/show and state show: honor user-specified plugin-dir (#20557) 2019-03-05 08:32:11 -08:00
state_show_test.go command/format: include nested blocks in `terraform show` output (#20149) 2019-01-30 10:08:59 -08:00
state_test.go command: Allow tests to run to completion without panics or hangs 2018-10-16 19:14:11 -07:00
taint.go commands: make sure the correct flagset is used 2018-11-23 16:13:34 +01:00
taint_test.go command/state: lock when pushing state 2018-11-20 11:15:16 +01:00
ui_input.go core: add a context to the UIInput interface 2019-03-08 10:24:40 +01:00
ui_input_test.go core: add a context to the UIInput interface 2019-03-08 10:24:40 +01:00
unlock.go core: add a context to the UIInput interface 2019-03-08 10:24:40 +01:00
unlock_test.go check for errors when loading a backend config 2019-03-12 17:57:26 -04:00
untaint.go commands: make sure the correct flagset is used 2018-11-23 16:13:34 +01:00
untaint_test.go command/state: lock when pushing state 2018-11-20 11:15:16 +01:00
validate.go command: Remove promise of plan -validate-only from validate docs 2019-02-25 14:27:59 -08:00
validate_test.go Fix tests after upgrading hcl 2018-11-26 23:38:37 +00:00
version.go command: Include provider versions in "terraform version" 2017-10-25 17:36:24 -07:00
version_test.go Implement CLI, version command 2014-05-24 12:04:43 -07:00
workspace_command.go commands: make sure the correct flagset is used 2018-11-23 16:13:34 +01:00
workspace_command_test.go command: Fix TestWorkspace_createWithState 2018-11-08 08:57:11 -08:00
workspace_delete.go commands: make sure the correct flagset is used 2018-11-23 16:13:34 +01:00
workspace_list.go commands: make sure the correct flagset is used 2018-11-23 16:13:34 +01:00
workspace_new.go commands: make sure the correct flagset is used 2018-11-23 16:13:34 +01:00
workspace_select.go commands: make sure the correct flagset is used 2018-11-23 16:13:34 +01:00
workspace_show.go commands: make sure the correct flagset is used 2018-11-23 16:13:34 +01:00