File tree Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 66 */
77
88resource "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
1515data "oci_identity_compartments" "compartments1" {
Original file line number Diff line number Diff line change 33 */
44
55resource "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
Original file line number Diff line number Diff line change 33 */
44
55resource "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
You can’t perform that action at this time.
0 commit comments