File tree Expand file tree Collapse file tree 1 file changed +48
-0
lines changed
3_networking/application-gateway Expand file tree Collapse file tree 1 file changed +48
-0
lines changed Original file line number Diff line number Diff line change 1+ # variables.tf
2+ # This file defines the input variables used in the Terraform configuration.
3+ # Each variable includes a description and type.
4+
5+ variable "subscription_id" {
6+ description = " The Azure subscription ID"
7+ type = string
8+ }
9+
10+ variable "resource_group_name" {
11+ description = " The name of the resource group"
12+ type = string
13+ }
14+
15+ variable "location" {
16+ description = " The Azure region to deploy resources"
17+ type = string
18+ }
19+
20+ variable "public_ip_name" {
21+ description = " The name of the public IP address"
22+ type = string
23+ }
24+
25+ variable "app_gateway_name" {
26+ description = " The name of the Application Gateway"
27+ type = string
28+ }
29+
30+ variable "vnet_name" {
31+ description = " The name of the virtual network"
32+ type = string
33+ }
34+
35+ variable "vnet_address_space" {
36+ description = " The address space of the virtual network"
37+ type = list (string )
38+ }
39+
40+ variable "subnet_name" {
41+ description = " The name of the subnet for the Application Gateway"
42+ type = string
43+ }
44+
45+ variable "subnet_address_prefixes" {
46+ description = " The address prefixes for the subnet"
47+ type = list (string )
48+ }
You can’t perform that action at this time.
0 commit comments