Skip to content

Commit

Permalink
Fix sysdig provider versioning in webhook-datasource module
Browse files Browse the repository at this point in the history
  • Loading branch information
ravinadhruve10 committed Mar 19, 2024
1 parent 487b2ad commit ac8edf7
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions modules/services/webhook-datasource/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ The following resources will be created in each instrumented account:
|------|---------|
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.0.0 |
| <a name="requirement_google"></a> [google](#requirement\_google) | >= 4.21.0 |
| <a name="requirement_sysdig"></a> [sysdig](#requirement\_sysdig) | >= 1.19.0 |
| <a name="requirement_sysdig"></a> [sysdig](#requirement\_sysdig) | >= 1.23.1 |

## Providers

Expand Down Expand Up @@ -84,4 +84,4 @@ No modules.
| <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 |
| <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 |
| <a name="output_workload_identity_project_number"></a> [workload\_identity\_project\_number](#output\_workload\_identity\_project\_number) | GCP project number |
| <a name="output_service_account_email"></a> [service\_account\_email](#output\_service\_account\_email) | email of the Service Account created |
| <a name="output_service_account_email"></a> [service\_account\_email](#output\_service\_account\_email) | email of the Service Account created |
2 changes: 1 addition & 1 deletion modules/services/webhook-datasource/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ terraform {
}
sysdig = {
source = "sysdiglabs/sysdig"
version = "~> 1.19.0"
version = ">= 1.23.1"
}
random = {
source = "hashicorp/random"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ terraform {
required_providers {
sysdig = {
source = "sysdiglabs/sysdig"
version = "~> 1.19.0"
version = ">= 1.23.1"
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ terraform {
required_providers {
sysdig = {
source = "sysdiglabs/sysdig"
version = "~> 1.19.0"
version = ">= 1.23.1"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion test/examples/secure_threat_detection/organization/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ terraform {
required_providers {
sysdig = {
source = "sysdiglabs/sysdig"
version = "~> 1.19.0"
version = ">= 1.23.1"
}
}
}
Expand Down
4 changes: 2 additions & 2 deletions test/examples/secure_threat_detection/single/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ terraform {
required_providers {
sysdig = {
source = "sysdiglabs/sysdig"
version = "~> 1.19.0"
version = ">= 1.23.1"
}
}
}
Expand Down Expand Up @@ -59,7 +59,7 @@ resource "sysdig_secure_cloud_auth_account" "gcp_project_mytestproject" {
workload_identity_federation = {
pool_id = module.single-project-threat-detection.workload_identity_pool_id
pool_provider_id = module.single-project-threat-detection.workload_identity_pool_provider_id
project_number = module.single-project-threat-detection. workload_identity_project_number
project_number = module.single-project-threat-detection.workload_identity_project_number
}
email = module.single-project-threat-detection.service_account_email
}
Expand Down

0 comments on commit ac8edf7

Please sign in to comment.