Skip to content

Commit 07232fc

Browse files
committed
Update description variable.
1 parent b3f0337 commit 07232fc

File tree

4 files changed

+7
-0
lines changed

4 files changed

+7
-0
lines changed

modules/iam-compartment/variables.tf

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff 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.
1112
variable "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

1517
variable "compartment_create" {

modules/iam-dynamic-group/variables.tf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ variable "dynamic_group_name" {
1010

1111
variable "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

1516
variable "dynamic_group_create" {

modules/iam-group/variables.tf

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff 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.
1112
variable "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

1517
variable "group_create" {

modules/iam-user/variables.tf

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff 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.
1112
variable "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

1517
variable "user_create" {

0 commit comments

Comments
 (0)