Skip to content

Commit 09e63ff

Browse files
Updated data type for variable
1 parent 1337eff commit 09e63ff

File tree

1 file changed

+1
-10
lines changed

1 file changed

+1
-10
lines changed

variables.tf

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -4,24 +4,19 @@
44
variable "resource_group_name" {
55
type = string
66
description = "Azure Datafactory Rg"
7-
default = ""
87
}
98

109
variable "location" {
1110
type = string
1211
description = "Azure Data factory location"
13-
default = ""
1412
}
1513

1614
variable "data_factory_name" {
1715
description = "Azure Data factory name"
1816
type = string
19-
default = ""
20-
2117
}
2218

2319
variable "environment" {
24-
default = "DEV"
2520
description = "Environment tag value in Azure"
2621
type = string
2722
validation {
@@ -31,30 +26,26 @@ variable "environment" {
3126
}
3227

3328
variable "application_name" {
34-
default = "devwithkrishna"
3529
description = "Azure application name tag"
30+
type = string
3631
}
3732

3833

3934
variable "temporary" {
40-
default = "TRUE"
4135
description = "Temporary tag value in Azure"
4236
type = string
4337
validation {
4438
condition = contains(["TRUE", "FALSE"], upper(var.temporary))
4539
error_message = "The temporary tag value must be either 'TRUE' or 'FALSE'."
4640
}
47-
4841
}
4942

5043
variable "managed_virtual_network_enabled" {
5144
description = "Is Managed Virtual Network enabled"
52-
default = "true"
5345
type = string
5446
}
5547

5648
variable "public_network_enabled" {
5749
description = "Is Public Network enabled"
58-
default = "true"
5950
type = string
6051
}

0 commit comments

Comments
 (0)