Skip to content

Commit 75a3af6

Browse files
committed
Update description value.
1 parent 07232fc commit 75a3af6

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

modules/iam-compartment/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ variable "compartment_name" {
1111
// The description is only used if compartment_create = true.
1212
variable "compartment_description" {
1313
description = "The description you assign to the compartment. Does not have to be unique, and it's changeable. "
14-
default = " "
14+
default = ""
1515
}
1616

1717
variable "compartment_create" {

modules/iam-dynamic-group/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +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 = " "
13+
default = ""
1414
}
1515

1616
variable "dynamic_group_create" {

modules/iam-group/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ variable "group_name" {
1111
// The description is only used if group_create = true.
1212
variable "group_description" {
1313
description = "The description you assign to the Group. Does not have to be unique, and it's changeable. "
14-
default = " "
14+
default = ""
1515
}
1616

1717
variable "group_create" {

modules/iam-user/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ variable "user_name" {
1111
// The description is only used if user_create = true.
1212
variable "user_description" {
1313
description = "The description you assign to the user. Does not have to be unique, and it's changeable. "
14-
default = " "
14+
default = ""
1515
}
1616

1717
variable "user_create" {

0 commit comments

Comments
 (0)