Skip to content

Instantly share code, notes, and snippets.

@gowatana
Created November 13, 2022 05:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gowatana/a1a5817c0e715b677749bd55767c14be to your computer and use it in GitHub Desktop.
Save gowatana/a1a5817c0e715b677749bd55767c14be to your computer and use it in GitHub Desktop.
terraform {
required_providers {
vcd = {
source = "vmware/vcd"
version = "3.7.0"
}
}
}
provider "vcd" {
user = var.vcd_user
password = var.vcd_pass
auth_type = "integrated"
org = var.vcd_org
vdc = var.vcd_vdc
url = var.vcd_url
max_retry_timeout = var.vcd_max_retry_timeout
allow_unverified_ssl = var.vcd_allow_unverified_ssl
}
@gowatana
Copy link
Author

下記の投稿むけ。

VMware Cloud Director 10.4 を Terraform で操作してみる。Part-02 vApp と VM の作成
https://vm.gowatana.jp/entry/2022/11/13/161857

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment