Skip to content

Instantly share code, notes, and snippets.

@gowatana
Created May 11, 2025 17:14
Show Gist options
  • Select an option

  • Save gowatana/b14d2812a182d6bf94290643a71d60b8 to your computer and use it in GitHub Desktop.

Select an option

Save gowatana/b14d2812a182d6bf94290643a71d60b8 to your computer and use it in GitHub Desktop.
terraform {
required_providers {
nutanix = {
source = "nutanix/nutanix"
version = "2.2.0"
}
}
}
provider "nutanix" {
username = var.nutanix_username
password = var.nutanix_password
endpoint = var.nutanix_endpoint
port = 9440
insecure = true
wait_timeout = 10
foundation_endpoint = "0.0.0.0"
ndb_endpoint = "0.0.0.0"
ndb_username = "none"
ndb_password = "none"
}
@gowatana

Copy link
Copy Markdown
Author

下記の投稿むけ。

Terraform の Nutanix Provider v2 を使用してみる。(接続確認編)
https://blog.ntnx.jp/entry/2025/05/12/025114

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