Skip to content

Commit f90e543

Browse files
Fix sysdig provider versioning in webhook-datasource module (#24)
1 parent 487b2ad commit f90e543

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

modules/services/webhook-datasource/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ The following resources will be created in each instrumented account:
1616
|------|---------|
1717
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.0.0 |
1818
| <a name="requirement_google"></a> [google](#requirement\_google) | >= 4.21.0 |
19-
| <a name="requirement_sysdig"></a> [sysdig](#requirement\_sysdig) | >= 1.19.0 |
19+
| <a name="requirement_sysdig"></a> [sysdig](#requirement\_sysdig) | >= 1.23.1 |
2020

2121
## Providers
2222

@@ -84,4 +84,4 @@ No modules.
8484
| <a name="output_workload_identity_pool_id"></a> [workload\_identity\_pool\_id](#output\_workload\_identity\_pool\_id) | Id of Workload Identity Pool for authenticating to GCP to access data ingestion resources |
8585
| <a name="output_workload_identity_pool_provider_id"></a> [workload\_identity\_pool\_provider\_id](#output\_workload\_identity\_pool\_provider\_id) | Id of Workload Identity Pool Provider for authenticating to GCP to access data ingestion resources |
8686
| <a name="output_workload_identity_project_number"></a> [workload\_identity\_project\_number](#output\_workload\_identity\_project\_number) | GCP project number |
87-
| <a name="output_service_account_email"></a> [service\_account\_email](#output\_service\_account\_email) | email of the Service Account created |
87+
| <a name="output_service_account_email"></a> [service\_account\_email](#output\_service\_account\_email) | email of the Service Account created |

modules/services/webhook-datasource/versions.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ terraform {
88
}
99
sysdig = {
1010
source = "sysdiglabs/sysdig"
11-
version = "~> 1.19.0"
11+
version = ">= 1.23.1"
1212
}
1313
random = {
1414
source = "hashicorp/random"

test/examples/secure_config_posture_identity_access/organization/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ terraform {
1616
required_providers {
1717
sysdig = {
1818
source = "sysdiglabs/sysdig"
19-
version = "~> 1.19.0"
19+
version = ">= 1.23.1"
2020
}
2121
}
2222
}

test/examples/secure_config_posture_identity_access/single/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ terraform {
1414
required_providers {
1515
sysdig = {
1616
source = "sysdiglabs/sysdig"
17-
version = "~> 1.19.0"
17+
version = ">= 1.23.1"
1818
}
1919
}
2020
}

test/examples/secure_threat_detection/organization/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ terraform {
2525
required_providers {
2626
sysdig = {
2727
source = "sysdiglabs/sysdig"
28-
version = "~> 1.19.0"
28+
version = ">= 1.23.1"
2929
}
3030
}
3131
}

test/examples/secure_threat_detection/single/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ terraform {
1515
required_providers {
1616
sysdig = {
1717
source = "sysdiglabs/sysdig"
18-
version = "~> 1.19.0"
18+
version = ">= 1.23.1"
1919
}
2020
}
2121
}
@@ -59,7 +59,7 @@ resource "sysdig_secure_cloud_auth_account" "gcp_project_mytestproject" {
5959
workload_identity_federation = {
6060
pool_id = module.single-project-threat-detection.workload_identity_pool_id
6161
pool_provider_id = module.single-project-threat-detection.workload_identity_pool_provider_id
62-
project_number = module.single-project-threat-detection. workload_identity_project_number
62+
project_number = module.single-project-threat-detection.workload_identity_project_number
6363
}
6464
email = module.single-project-threat-detection.service_account_email
6565
}

0 commit comments

Comments
 (0)