File tree Expand file tree Collapse file tree 4 files changed +7
-0
lines changed
Expand file tree Collapse file tree 4 files changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -8,8 +8,10 @@ variable "compartment_name" {
88 description = " The name you assign to the compartment during creation. The name must be unique across all compartments in the tenancy. "
99}
1010
11+ // The description is only used if compartment_create = true.
1112variable "compartment_description" {
1213 description = " The description you assign to the compartment. Does not have to be unique, and it's changeable. "
14+ default = " "
1315}
1416
1517variable "compartment_create" {
Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ variable "dynamic_group_name" {
1010
1111variable "dynamic_group_description" {
1212 description = " The description you assign to the Group. Does not have to be unique, and it's changeable. "
13+ default = " "
1314}
1415
1516variable "dynamic_group_create" {
Original file line number Diff line number Diff line change @@ -8,8 +8,10 @@ variable "group_name" {
88 description = " The name you assign to the group during creation. The name must be unique across all compartments in the tenancy. "
99}
1010
11+ // The description is only used if group_create = true.
1112variable "group_description" {
1213 description = " The description you assign to the Group. Does not have to be unique, and it's changeable. "
14+ default = " "
1315}
1416
1517variable "group_create" {
Original file line number Diff line number Diff line change @@ -8,8 +8,10 @@ variable "user_name" {
88 description = " The name you assign to the user during creation. The name must be unique across all compartments in the tenancy. "
99}
1010
11+ // The description is only used if user_create = true.
1112variable "user_description" {
1213 description = " The description you assign to the user. Does not have to be unique, and it's changeable. "
14+ default = " "
1315}
1416
1517variable "user_create" {
You can’t perform that action at this time.
0 commit comments