├── .github ├── CODE_OF_CONDUCT.md ├── ISSUE_TEMPLATE.md ├── dependabot.yml └── workflows │ ├── release.yml │ └── test.yml ├── .gitignore ├── .goreleaser.yml ├── .vscode └── launch.json ├── CHANGELOG.md ├── GNUmakefile ├── LICENSE ├── README.md ├── docs ├── index.md └── resources │ └── run.md ├── go.mod ├── go.sum ├── internal └── provider │ ├── cli_config.go │ ├── cli_config_unix.go │ ├── cli_config_windows.go │ ├── client.go │ ├── provider.go │ ├── provider_test.go │ ├── resource_run.go │ ├── resource_run_test.go │ └── wait.go ├── main.go ├── templates ├── index.md.tmpl └── resources │ └── run.md.tmpl ├── test ├── noop │ └── main.tf └── tfcinit │ ├── .terraform.lock.hcl │ ├── README.md │ ├── main.tf │ └── variables.tf └── tools └── tools.go /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/terraform-provider-multispace/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/terraform-provider-multispace/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/terraform-provider-multispace/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/terraform-provider-multispace/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/terraform-provider-multispace/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/terraform-provider-multispace/HEAD/.gitignore -------------------------------------------------------------------------------- /.goreleaser.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/terraform-provider-multispace/HEAD/.goreleaser.yml -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/terraform-provider-multispace/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/terraform-provider-multispace/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/terraform-provider-multispace/HEAD/GNUmakefile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/terraform-provider-multispace/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/terraform-provider-multispace/HEAD/README.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/terraform-provider-multispace/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/resources/run.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/terraform-provider-multispace/HEAD/docs/resources/run.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/terraform-provider-multispace/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/terraform-provider-multispace/HEAD/go.sum -------------------------------------------------------------------------------- /internal/provider/cli_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/terraform-provider-multispace/HEAD/internal/provider/cli_config.go -------------------------------------------------------------------------------- /internal/provider/cli_config_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/terraform-provider-multispace/HEAD/internal/provider/cli_config_unix.go -------------------------------------------------------------------------------- /internal/provider/cli_config_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/terraform-provider-multispace/HEAD/internal/provider/cli_config_windows.go -------------------------------------------------------------------------------- /internal/provider/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/terraform-provider-multispace/HEAD/internal/provider/client.go -------------------------------------------------------------------------------- /internal/provider/provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/terraform-provider-multispace/HEAD/internal/provider/provider.go -------------------------------------------------------------------------------- /internal/provider/provider_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/terraform-provider-multispace/HEAD/internal/provider/provider_test.go -------------------------------------------------------------------------------- /internal/provider/resource_run.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/terraform-provider-multispace/HEAD/internal/provider/resource_run.go -------------------------------------------------------------------------------- /internal/provider/resource_run_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/terraform-provider-multispace/HEAD/internal/provider/resource_run_test.go -------------------------------------------------------------------------------- /internal/provider/wait.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/terraform-provider-multispace/HEAD/internal/provider/wait.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/terraform-provider-multispace/HEAD/main.go -------------------------------------------------------------------------------- /templates/index.md.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/terraform-provider-multispace/HEAD/templates/index.md.tmpl -------------------------------------------------------------------------------- /templates/resources/run.md.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/terraform-provider-multispace/HEAD/templates/resources/run.md.tmpl -------------------------------------------------------------------------------- /test/noop/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/terraform-provider-multispace/HEAD/test/noop/main.tf -------------------------------------------------------------------------------- /test/tfcinit/.terraform.lock.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/terraform-provider-multispace/HEAD/test/tfcinit/.terraform.lock.hcl -------------------------------------------------------------------------------- /test/tfcinit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/terraform-provider-multispace/HEAD/test/tfcinit/README.md -------------------------------------------------------------------------------- /test/tfcinit/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/terraform-provider-multispace/HEAD/test/tfcinit/main.tf -------------------------------------------------------------------------------- /test/tfcinit/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/terraform-provider-multispace/HEAD/test/tfcinit/variables.tf -------------------------------------------------------------------------------- /tools/tools.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/terraform-provider-multispace/HEAD/tools/tools.go --------------------------------------------------------------------------------