We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d3f4a19 commit 1fc87c0Copy full SHA for 1fc87c0
dynamic_group.tf
@@ -1,7 +1,15 @@
1
+resource "random_id" "dynamic_group" {
2
+ byte_length = 2
3
+}
4
+
5
resource "oci_identity_dynamic_group" "redis_dynamic_group" {
6
7
+ provider = oci.homeregion
8
9
compartment_id = var.tenancy_ocid
10
11
+ name = "redis-cluster-dynamic-group-${random_id.dynamic_group.hex}"
12
description = "Dynamic group of Redis cluster Compute instances"
13
14
matching_rule = "tag.${oci_identity_tag_namespace.ArchitectureCenterTagNamespace.name}.${oci_identity_tag.ArchitectureCenterTag.name}.value = '${var.release}'"
- name = "redis-cluster-dynamic-group"
15
}
0 commit comments