Skip to content

Admin Group

craig-duffin edited this page Aug 22, 2017 · 4 revisions

The Admin Group resource may be used to create and manage Infoblox Admin Groups.

Example Template

resource "infoblox_admin_group" "example-group" {
    name = "example-group"
    comment = "An example Infoblox admin group"
    superuser = false
    disable = false
    access_method = ["GUI", "API", "TAXII"]
    email_addresses = ["[email protected]", "[email protected]"]
    roles = ["DNS Admin", "DHCP Admin"]
}

Argument Reference

The following arguments are supported:

  • name - (Required, Default: none) - (String) - The name of the Admin Group
  • comment - (Optional, Default: empty) - (String) - Comment field
  • superuser - (Optional, Default: false) - (Boolean) - Whether the Admin Group is a super-user group
  • disable - (Optional, Default: false) - (Boolean) - Whether the Admin Group should be disabled
  • access_method - (Optional, Default: ["GUI", "API", "TAXII"]) - ([]string) - A list of methods which may be used to access Infoblox or send Taxii messages to an Infoblox appliance.
  • email_addresses - (Optional, Default: empty) - ([]string) - A list of email addresses to associate with the Admin Group
  • roles - (Optional, Default: empty) - ([]string) - A list of roles to associate with the Admin Group
Clone this wiki locally