Skip to content

Instantly share code, notes, and snippets.

@gowatana
Created July 30, 2023 14:07
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/ce396b2a1ddff46c864191790117c9b9 to your computer and use it in GitHub Desktop.
Save gowatana/ce396b2a1ddff46c864191790117c9b9 to your computer and use it in GitHub Desktop.
terraform {
required_providers {
nutanix = {
source = "nutanix/nutanix"
version = ">=1.8.0"
}
}
}
provider "nutanix" {
ndb_endpoint = var.ndb_endpoint
ndb_username = var.ndb_username
ndb_password = var.ndb_password
insecure = true
wait_timeout = 10
}
@gowatana
Copy link
Author

下記の投稿むけ。

NDB で PostgreSQL DB をプロビジョニングしてみる。(Terraform 編)
https://blog.ntnx.jp/entry/2023/07/30/235532

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