Skip to content

Admin Group

ppwarwick edited this page Aug 2, 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"
    super-user = 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
  • super-user - (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