oci_analytics_analytics_instance_resource_group

This resource provides the Analytics Instance Resource Group resource in Oracle Cloud Infrastructure Analytics service. Api doc link for the resource: https://docs.oracle.com/iaas/api/#/en/analytics/latest/ResourceGroup

Example terraform configs related to the resource : https://github.com/oracle/terraform-provider-oci/tree/master/examples/analytics

Create a new resource group for the instance

Example Usage

resource "oci_analytics_analytics_instance_resource_group" "test_analytics_instance_resource_group" {
	#Required
	analytics_instance_id = oci_analytics_analytics_instance.test_analytics_instance.id
	capacity = var.analytics_instance_resource_group_capacity
	resource_name = oci_cloud_guard_resource.test_resource.name

	#Optional
	description = var.analytics_instance_resource_group_description
	display_name = var.analytics_instance_resource_group_display_name
}

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 Analytics Instance Resource Group * update - (Defaults to 20 minutes), when updating the Analytics Instance Resource Group * delete - (Defaults to 20 minutes), when destroying the Analytics Instance Resource Group

Import

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

$ terraform import oci_analytics_analytics_instance_resource_group.test_analytics_instance_resource_group "analyticsInstances/{analyticsInstanceId}/resourceGroups/{analyticsInstanceResourceGroupId}"