-
Notifications
You must be signed in to change notification settings - Fork 10
Permission Resource
The Permission resource may be used to create and manage Infoblox Permissions.
resource "infoblox_permission" "example-permision" {
role = "Terraform User"
permission = "WRITE"
resource_type = "CNAME"
}
The following arguments are supported:
-
group
- (Optional, One ofgroup
orrole
is required) - (String) - The name of the admin group this permission applies to. -
role
- (Optional, One ofgroup
orrole
is required) - (String) - The name of the role this permission applies to. -
object
- (Optional, At least one ofobject
orresource_type
is required) - (String) - A reference to a WAPI object, which will be the object this permission applies to. -
resource_type
- (Optional, At least one ofobject
orresource_type
is required) - (String) - The type of resource this permission applies to. If ‘object’ is set, the permission is going to apply to child objects of the specified type, for example if ‘object’ was set to an authoritative zone reference and ‘resource_type’ was set to ‘A’, the permission would apply to A Resource Records within the specified zone. -
permission
- (Required) - (String) - The type of permission. Valid values are: DENY, READ, WRITE.