| 1 | variable "resource_group_name" { |
| 2 | type = string |
| 3 | } |
| 4 | |
| 5 | variable "location" { |
| 6 | type = string |
| 7 | } |
| 8 | |
| 9 | variable "project_name" { |
| 10 | type = string |
| 11 | } |
| 12 | |
| 13 | variable "address_space" { |
| 14 | type = list(string) |
| 15 | } |
| 16 | |
| 17 | variable "aks_subnet_prefixes" { |
| 18 | type = list(string) |
| 19 | } |
| 20 | |
| 21 | variable "tags" { |
| 22 | type = map(string) |
| 23 | default = {} |
| 24 | } |