-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Added examples for network security group with flow logs.
- Loading branch information
Showing
12 changed files
with
311 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ on: | |
- main | ||
paths: | ||
- '**.tf' | ||
- '!examples/**.tf' | ||
- '_examples/**.tf' | ||
|
||
jobs: | ||
release: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
##----------------------------------------------------------------------------- | ||
## Network Security Group module call. | ||
##----------------------------------------------------------------------------- | ||
module "network_security_group" { | ||
depends_on = [module.subnet] | ||
source = "../../" | ||
name = "app" | ||
environment = "test" | ||
resource_group_name = module.resource_group.resource_group_name | ||
resource_group_location = module.resource_group.resource_group_location | ||
subnet_ids = module.subnet.default_subnet_id | ||
inbound_rules = [ | ||
{ | ||
name = "ssh" | ||
priority = 101 | ||
access = "Allow" | ||
protocol = "Tcp" | ||
source_address_prefix = "10.20.0.0/32" | ||
#source_address_prefixes = ["10.20.0.0/32","10.21.0.0/32"] | ||
source_port_range = "*" | ||
destination_address_prefix = "0.0.0.0/0" | ||
destination_port_range = "22" | ||
description = "ssh allowed port" | ||
}, | ||
{ | ||
name = "https" | ||
priority = 102 | ||
access = "Allow" | ||
protocol = "*" | ||
source_address_prefix = "VirtualNetwork" | ||
source_port_range = "80,443" | ||
destination_address_prefix = "0.0.0.0/0" | ||
destination_port_range = "22" | ||
description = "ssh allowed port" | ||
} | ||
] | ||
enable_diagnostic = true | ||
log_analytics_workspace_id = module.log-analytics.workspace_id | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
output "security_group_id" { | ||
value = module.network_security_group.id | ||
description = "Specifies the name of the network security group. Changing this forces a new resource to be created." | ||
} | ||
|
||
output "security_group_name" { | ||
value = module.network_security_group.name | ||
description = "The name of the resource group in which to create the network security group. Changing this forces a new resource to be created." | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,140 @@ | ||
provider "azurerm" { | ||
features {} | ||
} | ||
|
||
locals { | ||
name = "app" | ||
environment = "test" | ||
label_order = ["name", "environment"] | ||
} | ||
|
||
##----------------------------------------------------------------------------- | ||
## Resource Group module call | ||
## Resource group in which all resources will be deployed. | ||
##----------------------------------------------------------------------------- | ||
module "resource_group" { | ||
source = "clouddrove/resource-group/azure" | ||
version = "1.0.2" | ||
name = local.name | ||
environment = local.environment | ||
label_order = local.label_order | ||
location = "Canada Central" | ||
} | ||
|
||
##----------------------------------------------------------------------------- | ||
## Virtual Network module call. | ||
##----------------------------------------------------------------------------- | ||
module "vnet" { | ||
depends_on = [module.resource_group] | ||
source = "clouddrove/vnet/azure" | ||
version = "1.0.3" | ||
name = local.name | ||
environment = local.environment | ||
resource_group_name = module.resource_group.resource_group_name | ||
location = module.resource_group.resource_group_location | ||
address_space = "10.30.0.0/22" | ||
enable_network_watcher = true | ||
} | ||
|
||
##----------------------------------------------------------------------------- | ||
## Subnet Module call. | ||
## Subnet to which network security group will be attached. | ||
##----------------------------------------------------------------------------- | ||
module "subnet" { | ||
source = "clouddrove/subnet/azure" | ||
version = "1.0.2" | ||
name = local.name | ||
environment = local.environment | ||
resource_group_name = module.resource_group.resource_group_name | ||
location = module.resource_group.resource_group_location | ||
virtual_network_name = join("", module.vnet.vnet_name) | ||
# Subnet Configuration | ||
subnet_names = ["subnet"] | ||
subnet_prefixes = ["10.30.0.0/24"] | ||
# routes | ||
enable_route_table = true | ||
route_table_name = "default_subnet" | ||
# routes | ||
routes = [ | ||
{ | ||
name = "rt-test" | ||
address_prefix = "0.0.0.0/0" | ||
next_hop_type = "Internet" | ||
} | ||
] | ||
} | ||
|
||
##----------------------------------------------------------------------------- | ||
## Storage Module call. | ||
## Storage account in which network security group flow log will be received. | ||
##----------------------------------------------------------------------------- | ||
module "storage" { | ||
source = "clouddrove/storage/azure" | ||
version = "1.0.8" | ||
name = local.name | ||
environment = local.environment | ||
default_enabled = true | ||
resource_group_name = module.resource_group.resource_group_name | ||
location = module.resource_group.resource_group_location | ||
storage_account_name = "stordtyre236" | ||
## Storage Container | ||
containers_list = [ | ||
{ name = "app-test", access_type = "private" }, | ||
{ name = "app2", access_type = "private" }, | ||
] | ||
## Storage File Share | ||
file_shares = [ | ||
{ name = "fileshare1", quota = 5 }, | ||
] | ||
## Storage Tables | ||
tables = ["table1"] | ||
## Storage Queues | ||
queues = ["queue1"] | ||
management_policy_enable = true | ||
#enable private endpoint | ||
virtual_network_id = module.vnet.vnet_id[0] | ||
subnet_id = module.subnet.default_subnet_id[0] | ||
enable_diagnostic = false | ||
} | ||
|
||
##----------------------------------------------------------------------------- | ||
## Network Security Group module call. | ||
##----------------------------------------------------------------------------- | ||
module "network_security_group" { | ||
depends_on = [module.subnet] | ||
source = "../../" | ||
name = local.name | ||
environment = local.environment | ||
resource_group_name = module.resource_group.resource_group_name | ||
resource_group_location = module.resource_group.resource_group_location | ||
subnet_ids = module.subnet.default_subnet_id | ||
enable_flow_logs = true | ||
network_watcher_name = module.vnet.network_watcher_name | ||
flow_log_storage_account_id = module.storage.default_storage_account_id | ||
enable_traffic_analytics = false | ||
inbound_rules = [ | ||
{ | ||
name = "ssh" | ||
priority = 101 | ||
access = "Allow" | ||
protocol = "Tcp" | ||
source_address_prefix = "10.20.0.0/32" | ||
#source_address_prefixes = ["10.20.0.0/32","10.21.0.0/32"] | ||
source_port_range = "*" | ||
destination_address_prefix = "0.0.0.0/0" | ||
destination_port_range = "22" | ||
description = "ssh allowed port" | ||
}, | ||
{ | ||
name = "https" | ||
priority = 102 | ||
access = "Allow" | ||
protocol = "*" | ||
source_address_prefix = "VirtualNetwork" | ||
source_port_range = "80,443" | ||
destination_address_prefix = "0.0.0.0/0" | ||
destination_port_range = "22" | ||
description = "ssh allowed port" | ||
} | ||
] | ||
} |
Oops, something went wrong.