oci_identity_dynamic_group

This resource provides the Dynamic Group resource in Oracle Cloud Infrastructure Identity service.

Creates a new dynamic group in your tenancy.

You must specify your tenancy’s OCID as the compartment ID in the request object (remember that the tenancy is simply the root compartment). Notice that IAM resources (users, groups, compartments, and some policies) reside within the tenancy itself, unlike cloud resources such as compute instances, which typically reside within compartments inside the tenancy. For information about OCIDs, see Resource Identifiers.

You must also specify a name for the dynamic group, which must be unique across all dynamic groups in your tenancy, and cannot be changed. Note that this name has to be also unique across all groups in your tenancy. You can use this name or the OCID when writing policies that apply to the dynamic group. For more information about policies, see How Policies Work.

You must also specify a description for the dynamic group (although it can be an empty string). It does not have to be unique, and you can change it anytime with UpdateDynamicGroup.

Example Usage

resource "oci_identity_dynamic_group" "test_dynamic_group" {
	#Required
	compartment_id = var.tenancy_ocid
	description = var.dynamic_group_description
	matching_rule = var.dynamic_group_matching_rule
	name = var.dynamic_group_name

	#Optional
	defined_tags = {"Operations.CostCenter"= "42"}
	freeform_tags = {"Department"= "Finance"}
}

Argument Reference

The following arguments are supported:

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

Attributes Reference

The following attributes are exported:

Timeouts

The timeouts block allows you to specify timeouts for certain operations: * create - (Defaults to 20 minutes), when creating the Dynamic Group * update - (Defaults to 20 minutes), when updating the Dynamic Group * delete - (Defaults to 20 minutes), when destroying the Dynamic Group

Import

DynamicGroups can be imported using the id, e.g.

$ terraform import oci_identity_dynamic_group.test_dynamic_group "id"