Skip to content

Commit 6ae7dc4

Browse files
author
iru
authored
doc: use-case questionnarie (#90)
* doc: questionnarie * chore: bump
1 parent 30c156f commit 6ae7dc4

File tree

23 files changed

+56
-19
lines changed

23 files changed

+56
-19
lines changed

examples/organizational/main.tf

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ module "ssm" {
2828
source = "../../modules/infrastructure/ssm"
2929
name = var.name
3030
sysdig_secure_api_token = data.sysdig_secure_connection.current.secure_api_token
31+
tags = var.tags
3132
}
3233

3334

@@ -43,7 +44,10 @@ module "codebuild" {
4344
source = "../../modules/infrastructure/codebuild"
4445
name = var.name
4546
secure_api_token_secret_name = module.ssm.secure_api_token_secret_name
46-
depends_on = [module.ssm]
47+
48+
tags = var.tags
49+
# note. this is required to avoid race conditions
50+
depends_on = [module.ssm]
4751
}
4852

4953
module "cloud_connector" {

examples/single-account-apprunner/main.tf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ module "ssm" {
1111
source = "../../modules/infrastructure/ssm"
1212
name = var.name
1313
sysdig_secure_api_token = data.sysdig_secure_connection.current.secure_api_token
14+
tags = var.tags
1415
}
1516

1617

examples/single-account-ecs/main.tf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ module "ssm" {
1111
source = "../../modules/infrastructure/ssm"
1212
name = var.name
1313
sysdig_secure_api_token = data.sysdig_secure_connection.current.secure_api_token
14+
tags = var.tags
1415
}
1516

1617

examples/single-account-k8s/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ $ terraform apply
8585

8686
| Name | Version |
8787
|------|---------|
88-
| <a name="provider_aws"></a> [aws](#provider\_aws) | 4.13.0 |
88+
| <a name="provider_aws"></a> [aws](#provider\_aws) | 4.14.0 |
8989
| <a name="provider_helm"></a> [helm](#provider\_helm) | 2.5.1 |
9090
| <a name="provider_sysdig"></a> [sysdig](#provider\_sysdig) | 0.5.37 |
9191

examples/single-account-k8s/main.tf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,5 @@ module "ssm" {
88
source = "../../modules/infrastructure/ssm"
99
name = var.name
1010
sysdig_secure_api_token = data.sysdig_secure_connection.current.secure_api_token
11+
tags = var.tags
1112
}

examples/trigger-events/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ $ terraform apply
4949

5050
| Name | Version |
5151
|------|---------|
52-
| <a name="provider_aws"></a> [aws](#provider\_aws) | 4.13.0 |
52+
| <a name="provider_aws"></a> [aws](#provider\_aws) | 4.14.0 |
5353

5454
## Modules
5555

modules/infrastructure/cloudtrail/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
| Name | Version |
1414
|------|---------|
15-
| <a name="provider_aws"></a> [aws](#provider\_aws) | 4.13.0 |
15+
| <a name="provider_aws"></a> [aws](#provider\_aws) | 4.14.0 |
1616

1717
## Modules
1818

modules/infrastructure/cloudtrail_s3-sns-sqs/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ EVENT FILTER/fine-tunning, regarding what we want to send to Sysdig Cloud-Connec
4646

4747
| Name | Version |
4848
|------|---------|
49-
| <a name="provider_aws"></a> [aws](#provider\_aws) | 4.13.0 |
49+
| <a name="provider_aws"></a> [aws](#provider\_aws) | 4.14.0 |
5050

5151
## Modules
5252

modules/infrastructure/codebuild/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
| Name | Version |
1414
|------|---------|
15-
| <a name="provider_aws"></a> [aws](#provider\_aws) | 4.13.0 |
15+
| <a name="provider_aws"></a> [aws](#provider\_aws) | 4.14.0 |
1616

1717
## Modules
1818

modules/infrastructure/ecs-vpc/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
| Name | Version |
1515
|------|---------|
16-
| <a name="provider_aws"></a> [aws](#provider\_aws) | 4.13.0 |
16+
| <a name="provider_aws"></a> [aws](#provider\_aws) | 4.14.0 |
1717

1818
## Modules
1919

0 commit comments

Comments
 (0)