Skip to content

Commit 93b8b2a

Browse files
committed
docs: include scanning_subscription_id input for global module in examples
1 parent 7b38cf1 commit 93b8b2a

File tree

5 files changed

+16
-0
lines changed

5 files changed

+16
-0
lines changed

examples/custom-vnet/main.tf

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,9 @@ module "lacework_azure_agentless_scanning_rg_and_vnet" {
5858
# For example, 'my-org' is the account name in 'my-org.lacework.net'.
5959
lacework_account = "my-org"
6060

61+
// specify the subscription in which AWLS will be deployed
62+
scanning_subscription_id = "abcd-1234"
63+
6164
integration_level = "TENANT"
6265
global = true
6366
custom_network = tolist(azurerm_virtual_network.example.subnet)[0].id

examples/subscription-multi-region/main.tf

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ module "lacework_azure_agentless_scanning_subscription_us_west" {
77
# For example, 'my-org' is the account name in 'my-org.lacework.net'.
88
lacework_account = "my-org"
99

10+
// specify the subscription in which AWLS will be deployed
11+
scanning_subscription_id = "abcd-1234"
12+
1013
integration_level = "SUBSCRIPTION"
1114
global = true
1215
create_log_analytics_workspace = true

examples/subscription-single-region/main.tf

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,15 @@ module "lacework_azure_agentless_scanning_subscription_us_west" {
55
# Specify your Lacework account name - only specify this in the global module.
66
# For example, 'my-org' is the account name in 'my-org.lacework.net'.
77
lacework_account = "my-org"
8+
9+
// specify the subscription in which AWLS will be deployed
10+
scanning_subscription_id = "abcd-1234"
811

912
integration_level = "SUBSCRIPTION"
1013
global = true
1114
create_log_analytics_workspace = true
1215
region = "West US"
16+
1317
// specify which subscriptions to monitor - only do this in the global module
1418
included_subscriptions = ["/subscriptions/subscription-1", "/subscriptions/subscription-2"]
1519
}

examples/tenant-multi-region/main.tf

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ module "lacework_azure_agentless_scanning_tenant_us_west" {
77
# For example, 'my-org' is the account name in 'my-org.lacework.net'.
88
lacework_account = "my-org"
99

10+
// specify the subscription in which AWLS will be deployed
11+
scanning_subscription_id = "abcd-1234"
12+
1013
integration_level = "TENANT"
1114
global = true
1215
create_log_analytics_workspace = true

examples/tenant-single-region/main.tf

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ module "lacework_azure_agentless_scanning_single_tenant" {
99
# For example, 'my-org' is the account name in 'my-org.lacework.net'.
1010
lacework_account = "my-org"
1111

12+
// specify the subscription in which AWLS will be deployed
13+
scanning_subscription_id = "abcd-1234"
14+
1215
global = true
1316
create_log_analytics_workspace = true
1417
integration_level = "tenant"

0 commit comments

Comments
 (0)