├── .github └── ISSUE_TEMPLATE │ └── bug_report.md ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── NOTICE.txt ├── README.md ├── example ├── README.md ├── depends_on │ ├── main.tf │ ├── terraform.tfvars.sample │ └── variables.tf ├── multi-machine │ ├── main.tf │ ├── terraform.tfvars.sample │ └── variables.tf ├── remote-execute │ ├── main.tf │ ├── terraform.tfvars.sample │ └── variables.tf └── simple │ ├── main.tf │ ├── terraform.tfvars.sample │ └── variables.tf ├── go.mod ├── go.sum ├── main.go ├── scripts └── update_resource_state.sh ├── sdk ├── client_entities.go ├── client_utils.go ├── http_methods.go ├── interface.go ├── mock_data_test.go ├── schema.go ├── vra7_client.go ├── vra7_sdk.go └── vra7_sdk_test.go ├── utils ├── assert.go ├── logger.go └── utilities.go ├── vra7 ├── mock_data_test.go ├── provider.go ├── provider_test.go ├── resource_vra7_deployment.go └── resource_vra7_deployment_test.go └── website ├── docs ├── index.html.markdown └── r │ ├── BasicSingleMachine.yaml │ └── deployment.html.markdown └── vra7.erb /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/legacy-terraform-provider-vra7/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/legacy-terraform-provider-vra7/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/legacy-terraform-provider-vra7/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/legacy-terraform-provider-vra7/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/legacy-terraform-provider-vra7/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/legacy-terraform-provider-vra7/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/legacy-terraform-provider-vra7/HEAD/Makefile -------------------------------------------------------------------------------- /NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/legacy-terraform-provider-vra7/HEAD/NOTICE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/legacy-terraform-provider-vra7/HEAD/README.md -------------------------------------------------------------------------------- /example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/legacy-terraform-provider-vra7/HEAD/example/README.md -------------------------------------------------------------------------------- /example/depends_on/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/legacy-terraform-provider-vra7/HEAD/example/depends_on/main.tf -------------------------------------------------------------------------------- /example/depends_on/terraform.tfvars.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/legacy-terraform-provider-vra7/HEAD/example/depends_on/terraform.tfvars.sample -------------------------------------------------------------------------------- /example/depends_on/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/legacy-terraform-provider-vra7/HEAD/example/depends_on/variables.tf -------------------------------------------------------------------------------- /example/multi-machine/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/legacy-terraform-provider-vra7/HEAD/example/multi-machine/main.tf -------------------------------------------------------------------------------- /example/multi-machine/terraform.tfvars.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/legacy-terraform-provider-vra7/HEAD/example/multi-machine/terraform.tfvars.sample -------------------------------------------------------------------------------- /example/multi-machine/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/legacy-terraform-provider-vra7/HEAD/example/multi-machine/variables.tf -------------------------------------------------------------------------------- /example/remote-execute/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/legacy-terraform-provider-vra7/HEAD/example/remote-execute/main.tf -------------------------------------------------------------------------------- /example/remote-execute/terraform.tfvars.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/legacy-terraform-provider-vra7/HEAD/example/remote-execute/terraform.tfvars.sample -------------------------------------------------------------------------------- /example/remote-execute/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/legacy-terraform-provider-vra7/HEAD/example/remote-execute/variables.tf -------------------------------------------------------------------------------- /example/simple/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/legacy-terraform-provider-vra7/HEAD/example/simple/main.tf -------------------------------------------------------------------------------- /example/simple/terraform.tfvars.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/legacy-terraform-provider-vra7/HEAD/example/simple/terraform.tfvars.sample -------------------------------------------------------------------------------- /example/simple/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/legacy-terraform-provider-vra7/HEAD/example/simple/variables.tf -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/legacy-terraform-provider-vra7/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/legacy-terraform-provider-vra7/HEAD/go.sum -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/legacy-terraform-provider-vra7/HEAD/main.go -------------------------------------------------------------------------------- /scripts/update_resource_state.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/legacy-terraform-provider-vra7/HEAD/scripts/update_resource_state.sh -------------------------------------------------------------------------------- /sdk/client_entities.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/legacy-terraform-provider-vra7/HEAD/sdk/client_entities.go -------------------------------------------------------------------------------- /sdk/client_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/legacy-terraform-provider-vra7/HEAD/sdk/client_utils.go -------------------------------------------------------------------------------- /sdk/http_methods.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/legacy-terraform-provider-vra7/HEAD/sdk/http_methods.go -------------------------------------------------------------------------------- /sdk/interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/legacy-terraform-provider-vra7/HEAD/sdk/interface.go -------------------------------------------------------------------------------- /sdk/mock_data_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/legacy-terraform-provider-vra7/HEAD/sdk/mock_data_test.go -------------------------------------------------------------------------------- /sdk/schema.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/legacy-terraform-provider-vra7/HEAD/sdk/schema.go -------------------------------------------------------------------------------- /sdk/vra7_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/legacy-terraform-provider-vra7/HEAD/sdk/vra7_client.go -------------------------------------------------------------------------------- /sdk/vra7_sdk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/legacy-terraform-provider-vra7/HEAD/sdk/vra7_sdk.go -------------------------------------------------------------------------------- /sdk/vra7_sdk_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/legacy-terraform-provider-vra7/HEAD/sdk/vra7_sdk_test.go -------------------------------------------------------------------------------- /utils/assert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/legacy-terraform-provider-vra7/HEAD/utils/assert.go -------------------------------------------------------------------------------- /utils/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/legacy-terraform-provider-vra7/HEAD/utils/logger.go -------------------------------------------------------------------------------- /utils/utilities.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/legacy-terraform-provider-vra7/HEAD/utils/utilities.go -------------------------------------------------------------------------------- /vra7/mock_data_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/legacy-terraform-provider-vra7/HEAD/vra7/mock_data_test.go -------------------------------------------------------------------------------- /vra7/provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/legacy-terraform-provider-vra7/HEAD/vra7/provider.go -------------------------------------------------------------------------------- /vra7/provider_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/legacy-terraform-provider-vra7/HEAD/vra7/provider_test.go -------------------------------------------------------------------------------- /vra7/resource_vra7_deployment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/legacy-terraform-provider-vra7/HEAD/vra7/resource_vra7_deployment.go -------------------------------------------------------------------------------- /vra7/resource_vra7_deployment_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/legacy-terraform-provider-vra7/HEAD/vra7/resource_vra7_deployment_test.go -------------------------------------------------------------------------------- /website/docs/index.html.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/legacy-terraform-provider-vra7/HEAD/website/docs/index.html.markdown -------------------------------------------------------------------------------- /website/docs/r/BasicSingleMachine.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/legacy-terraform-provider-vra7/HEAD/website/docs/r/BasicSingleMachine.yaml -------------------------------------------------------------------------------- /website/docs/r/deployment.html.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/legacy-terraform-provider-vra7/HEAD/website/docs/r/deployment.html.markdown -------------------------------------------------------------------------------- /website/vra7.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/legacy-terraform-provider-vra7/HEAD/website/vra7.erb --------------------------------------------------------------------------------