Skip to content

Commit 271d794

Browse files
authored
+ terraform.tfvars
1 parent 81947a6 commit 271d794

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# terraform.tfvars
2+
# This file provides default values for the variables defined in variables.tf.
3+
# These values can be overridden by specifying different values during Terraform execution.
4+
5+
# Azure Subscription
6+
subscription_id = ""
7+
8+
# Resource Group
9+
resource_group_name = "your-resource-group-name"
10+
location = "eastus"
11+
12+
# Load Balancer Configuration
13+
load_balancer_name = "my-load-balancer"
14+
public_ip_name = "my-lb-public-ip"
15+
frontend_ip_configuration_name = "frontend-ip-config"
16+
backend_pool_name = "backend-pool"
17+
health_probe_name = "health-probe"
18+
lb_rule_name = "lb-rule"
19+
lb_sku = "Standard"
20+
probe_protocol = "Tcp"
21+
probe_port = 80
22+
frontend_port = 80
23+
backend_port = 80
24+
25+
# Tags
26+
tags = {
27+
Environment = "Production"
28+
Project = "MyProject"
29+
Owner = "TeamName"
30+
}

0 commit comments

Comments
 (0)