File tree Expand file tree Collapse file tree 1 file changed +30
-0
lines changed
3_networking/load-balancer Expand file tree Collapse file tree 1 file changed +30
-0
lines changed Original file line number Diff line number Diff line change 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+ }
You can’t perform that action at this time.
0 commit comments