Skip to content

Commit d76d148

Browse files
alexng-canuckdshelbyo
authored andcommitted
Format identity examples
1 parent 6452efa commit d76d148

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

docs/examples/identity/compartment.tf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@
66
*/
77

88
resource "oci_identity_compartment" "compartment1" {
9-
name = "tf-example-compartment"
10-
description = "compartment created by terraform"
9+
name = "tf-example-compartment"
10+
description = "compartment created by terraform"
1111
compartment_id = "${var.tenancy_ocid}"
12-
enable_delete = false // true will cause this compartment to be deleted when running `terrafrom destroy`
12+
enable_delete = false // true will cause this compartment to be deleted when running `terrafrom destroy`
1313
}
1414

1515
data "oci_identity_compartments" "compartments1" {

docs/examples/identity/group.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
*/
44

55
resource "oci_identity_group" "group1" {
6-
name = "tf-example-group"
7-
description = "group created by terraform"
6+
name = "tf-example-group"
7+
description = "group created by terraform"
88
compartment_id = "${var.tenancy_ocid}"
99
}
1010

docs/examples/identity/user.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
*/
44

55
resource "oci_identity_user" "user1" {
6-
name = "tf-example-user"
7-
description = "user created by terraform"
6+
name = "tf-example-user"
7+
description = "user created by terraform"
88
compartment_id = "${var.tenancy_ocid}"
99
}
1010

0 commit comments

Comments
 (0)