37 lines
726 B
Terraform
37 lines
726 B
Terraform
variable "vnet_name" {
|
|
description = "Name of the Virtual Network"
|
|
type = string
|
|
}
|
|
|
|
variable "resource_group_name" {
|
|
description = "Resource Group to create resources in"
|
|
type = string
|
|
}
|
|
|
|
variable "location" {
|
|
description = "Azure region"
|
|
type = string
|
|
}
|
|
|
|
variable "address_space" {
|
|
description = "CIDR blocks for the VNet"
|
|
type = list(string)
|
|
}
|
|
|
|
variable "subnets" {
|
|
description = "Map of subnet names to CIDR blocks"
|
|
type = map(string)
|
|
}
|
|
|
|
variable "environment" {
|
|
description = "Environment tag (dev/prod)"
|
|
type = string
|
|
default = "dev"
|
|
}
|
|
|
|
variable "project" {
|
|
description = "Project tag"
|
|
type = string
|
|
default = "TerraformBootcamp"
|
|
}
|