Closed joaoubaldo closed 4 months ago
When configuring the provider via properties, as shown below, instead of environment variables, the local clientId is being incorrectly set with ClientSecret.
clientId
ClientSecret
provider "crowdstrike" { cloud = "eu-1" client_id = var.falcon_client_id client_secret = var.falcon_client_secret } variable "falcon_client_id" { type = string } variable "falcon_client_secret" { type = string }
This makes it impossible to configure the provider using configuration properties. The observed error:
│ "errors": [ │ { │ "code": 403, │ "message": "Failed to issue access token - Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method)" │ } │ ]
This PR addresses the issue above.
Good catch thank you!
When configuring the provider via properties, as shown below, instead of environment variables, the local
clientId
is being incorrectly set withClientSecret
.This makes it impossible to configure the provider using configuration properties. The observed error:
This PR addresses the issue above.