Add support vhub route table routes

This commit is contained in:
LaurentLesle 2022-04-18 06:02:16 +00:00 коммит произвёл GitHub
Родитель 5bcecf8518
Коммит 041eaded60
3 изменённых файлов: 22 добавлений и 2 удалений

Просмотреть файл

@ -1,7 +1,7 @@
# See http://pre-commit.com for more information
# See http://pre-commit.com/hooks.html for more hooks
repos:
- repo: git://github.com/antonbabenko/pre-commit-terraform
- repo: https://github.com/antonbabenko/pre-commit-terraform
rev: v1.64.0
hooks:
- id: terraform_fmt
@ -9,7 +9,7 @@ repos:
- id: terraform_tflint
# - id: terraform_validate
# - id: terraform_tfsec
- repo: git://github.com/pre-commit/pre-commit-hooks
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.1.0
hooks:
- id: check-merge-conflict

Просмотреть файл

@ -28,9 +28,13 @@ locals {
front_door_waf_policies = var.front_door_waf_policies
front_doors = var.front_doors
ip_groups = var.ip_groups
lb = var.lb
lb_backend_address_pool = var.lb_backend_address_pool
lb_backend_address_pool_address = var.lb_backend_address_pool_address
load_balancers = var.load_balancers
local_network_gateways = var.local_network_gateways
nat_gateways = var.nat_gateways
network_interface_backend_address_pool_association = var.network_interface_backend_address_pool_association
network_profiles = var.network_profiles
network_security_group_definition = var.network_security_group_definition
network_watchers = var.network_watchers
@ -43,6 +47,7 @@ locals {
vhub_peerings = var.vhub_peerings
virtual_hub_connections = var.virtual_hub_connections
virtual_hub_er_gateway_connections = var.virtual_hub_er_gateway_connections
virtual_hub_route_table_routes = var.virtual_hub_route_table_routes
virtual_hub_route_tables = var.virtual_hub_route_tables
virtual_hubs = var.virtual_hubs
virtual_network_gateway_connections = var.virtual_network_gateway_connections

Просмотреть файл

@ -141,6 +141,9 @@ variable "vnet_peerings" {
variable "virtual_hub_er_gateway_connections" {
default = {}
}
variable "virtual_hub_route_table_routes" {
default = {}
}
variable "virtual_hub_route_tables" {
default = {}
}
@ -155,4 +158,16 @@ variable "vpn_gateway_connections" {
}
variable "network_profiles" {
default = {}
}
variable "lb" {
default = {}
}
variable "lb_backend_address_pool" {
default = {}
}
variable "lb_backend_address_pool_address" {
default = {}
}
variable "network_interface_backend_address_pool_association" {
default = {}
}