infobloxopen / terraform-provider-infoblox

Infoblox NIOS Terraform Provider
https://github.com/infobloxopen/terraform-provider-infoblox
Mozilla Public License 2.0
72 stars 79 forks source link

support using a config file for the provider #197

Open fawaf opened 2 years ago

fawaf commented 2 years ago

json or yaml format with the required details

e.g. infoblox.json

{
  "server": "<hostname>",
  "username": "nios_username",
  "password": "nios_password"
}

provider.tf

provider "infoblox" {
  config_file = "/home/blah/infoblox.json"
}