Skip to content

Commit 29020f2

Browse files
updated readme and removed defauts in variables
1 parent 1272d24 commit 29020f2

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

user-assigned-managed-identity/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ Basic usage of this module is as follows:
1414
# Optional variables
1515
application_name = "devwithkrishna"
1616
environment = "DEV"
17-
location = "centralindia"
18-
managed_identity_name = "test"
19-
resource_group_name = "testrg"
20-
temporary = "TRUE"
17+
location = ""
18+
managed_identity_name = ""
19+
resource_group_name = ""
20+
temporary = ""
2121
}
2222
```
2323

user-assigned-managed-identity/variables.tf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
variable "resource_group_name" {
2-
default = "testrg"
2+
default = ""
33
description = "Azure resource group name to create managed identity"
44
type = string
55
}
66

77
variable "managed_identity_name" {
8-
default = "test"
8+
default = ""
99
description = "Name of user assigned managed identity in Azure"
1010
type = string
1111
}
1212

1313
variable "location" {
14-
default = "centralindia"
14+
default = ""
1515
description = "Azure location"
1616
type = string
1717
}

0 commit comments

Comments
 (0)