update files
This commit is contained in:
parent
02691ea927
commit
06cb833672
@ -30,6 +30,7 @@ resource "azurerm_public_ip" "pip_azfw" {
|
||||
resource_group_name = azurerm_resource_group.rg.name
|
||||
allocation_method = "Static"
|
||||
sku = "Standard"
|
||||
zones = [ "1", "2", "3" ]
|
||||
}
|
||||
|
||||
resource "azurerm_storage_account" "sa" {
|
||||
@ -135,7 +136,7 @@ resource "azurerm_network_interface_security_group_association" "vm_jump_nsg_ass
|
||||
network_security_group_id = azurerm_network_security_group.vm_jump_nsg.id
|
||||
}
|
||||
|
||||
resource "azurerm_linux_virtual_machine" "vm_server" {
|
||||
resource "azurerm_windows_virtual_machine" "vm_server" {
|
||||
name = "server-vm"
|
||||
resource_group_name = azurerm_resource_group.rg.name
|
||||
location = azurerm_resource_group.rg.location
|
||||
@ -160,7 +161,7 @@ resource "azurerm_linux_virtual_machine" "vm_server" {
|
||||
}
|
||||
}
|
||||
|
||||
resource "azurerm_linux_virtual_machine" "vm_jump" {
|
||||
resource "azurerm_windows_virtual_machine" "vm_jump" {
|
||||
name = "jump-vm"
|
||||
resource_group_name = azurerm_resource_group.rg.name
|
||||
location = azurerm_resource_group.rg.location
|
||||
@ -223,6 +224,7 @@ resource "azurerm_firewall_policy_rule_collection_group" "prcg" {
|
||||
name = "netRule1"
|
||||
protocols = ["TCP"]
|
||||
source_addresses = ["10.10.1.0/24"]
|
||||
destination_addresses = [ "*" ]
|
||||
destination_ports = ["8000", "8999"]
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user