hashicorp / terraform-provider-infoblox

This provider has moved to https://github.com/infobloxopen/terraform-provider-infoblox
https://github.com/infobloxopen/terraform-provider-infoblox
Mozilla Public License 2.0
12 stars 22 forks source link

Terraform provider documentation is not accurate on terraform.io website #11

Closed scoulomb closed 4 years ago

scoulomb commented 4 years ago

Doc given on Terraform website for Terraform provider here: https://www.terraform.io/docs/providers/infoblox/index.html

is not accurate, it should not be:

provider "infoblox"{
INFOBLOX_USERNAME=infoblox
INFOBLOX_SERVER=10.0.0.1
INFOBLOX_PASSWORD=infoblox
}

but

provider "infoblox" {
username="admin"
server="10.0.0.1" 
password="infoblox"
}

This is aligned with Infoblox plugin code here. Otherwise it will prompt for username, server and password.

I tried it here: https://github.com/scoulomb/myIaC/blob/master/terraform/infoblox/main.tf

Can we update the doc? What do you think?

Thank you

scoulomb commented 4 years ago

I had fixed it here: https://github.com/terraform-providers/terraform-provider-infoblox/pull/12 But this change has been embedded in https://github.com/terraform-providers/terraform-provider-infoblox/pull/13 merged today:?

AvRajath commented 4 years ago

Closing this as the document is now updated