Skip to content

Commit a9937eb

Browse files
committed
retire get_nsg.py and remove unused requirements
1 parent 06d082b commit a9937eb

File tree

6 files changed

+8
-47
lines changed

6 files changed

+8
-47
lines changed

cloud_Azure/terraform/module/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ NetworkWatcher is automatically created by Azure when VirtualNetwork is created
6262

6363
| Name | Description |
6464
|------|-------------|
65-
| network_security_groups | Id's of the Virtual Networks which to collect flow logs |
65+
| vnet_ids | Id's of the Virtual Networks which to collect flow logs |
6666
| subscription_id | Azure subscription ID |
6767
| resource_group_names | Names of Resource Groups from which to collect flow logs |
6868
| storage_accounts | Storage Account names where flow logs will be collected |

cloud_Azure/terraform/module/examples/single_account_multiple_resource_groups/README.md

+1-3
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ None.
1515
location = "eastus"
1616
resource_group_names = ["resource-group-1", "resource-group-2", "resource-group-3"] # groups must exist in selected location
1717
storage_account_names = []
18-
18+
1919
# Kentik
2020
2121
token = "dummy_token"
@@ -29,8 +29,6 @@ None.
2929
3030
1. Execute:
3131
```bash
32-
virtualenv venv && source venv/bin/activate
33-
pip install -r ../../requirements.txt
3432
terraform init
3533
```
3634

cloud_Azure/terraform/module/examples/single_account_multiple_resource_groups/main.tf

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ terraform {
33
required_providers {
44
azurerm = {
55
source = "hashicorp/azurerm"
6-
version = "~> 3.10"
6+
version = "~> 4.15"
77
}
88
azuread = {
99
source = "hashicorp/azuread"
10-
version = "~> 2.24"
10+
version = "~> 3.0"
1111
}
1212
kentik-cloudexport = {
1313
source = "kentik/kentik-cloudexport"

cloud_Azure/terraform/module/examples/single_account_multiple_resource_groups/output.tf

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

2-
output "network_security_groups" {
3-
value = module.kentik_azure_integration.network_security_groups
4-
description = "Id's of the Network Security Groups which flow logs will be collected"
2+
output "vnet_ids" {
3+
value = module.kentik_azure_integration.vnet_ids
4+
description = "Id's of the Virtual Networks from which to collect flow logs"
55
}
66

77
output "subscription_id" {
@@ -22,4 +22,4 @@ output "storage_accounts" {
2222
output "principal_id" {
2323
value = module.kentik_azure_integration.principal_id
2424
description = "Service Principal ID created for Kentik NSG Flow Exporter application"
25-
}
25+
}

cloud_Azure/terraform/module/get_nsg.py

-34
This file was deleted.

cloud_Azure/terraform/module/requirements.txt

-3
This file was deleted.

0 commit comments

Comments
 (0)