-
Notifications
You must be signed in to change notification settings - Fork 476
[Cloud Security] Add aws
prefix to CSPM vars
#14923
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,6 +15,11 @@ | |
# 1.4.x - 8.9.x | ||
# 1.3.x - 8.8.x | ||
# 1.2.x - 8.7.x | ||
- version: "4.0.0-preview01" | ||
changes: | ||
- description: Changed AWS input vars with aws. prefix | ||
type: enhancement | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I noticed the GH PR is labeled with There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @andrewkroh, I was pretty sure that this would be a breaking eventually, however I managed to find a different path in Kibana to fix this issue so I will be closing this. I will add the correct type next time. |
||
link: https://github.com/elastic/integrations/pull/14923 | ||
- version: "3.0.1" | ||
changes: | ||
- description: Save GCP Project ID as string | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,21 +23,39 @@ config: | |
{{#if access_key_id}} | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The template now contains duplicate conditional blocks for both old and new variable names (e.g., Copilot uses AI. Check for mistakes. Positive FeedbackNegative Feedback |
||
access_key_id: {{access_key_id}} | ||
{{/if}} | ||
{{#if aws.access_key_id}} | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. what happens if both I believe only one should be used to resolve source of truth
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I was doing that in the However, this change does not address showing the Fleet extension in Kibana for older versions of the integration; therefore, I am going to close this PR and have a CloudSetup mapping |
||
access_key_id: {{aws.access_key_id}} | ||
{{/if}} | ||
{{#if secret_access_key}} | ||
secret_access_key: {{secret_access_key}} | ||
{{/if}} | ||
{{#if aws.secret_access_key}} | ||
secret_access_key: {{aws.secret_access_key}} | ||
{{/if}} | ||
{{#if session_token}} | ||
session_token: {{session_token}} | ||
{{/if}} | ||
{{#if aws.session_token}} | ||
session_token: {{aws.session_token}} | ||
{{/if}} | ||
{{#if shared_credential_file}} | ||
shared_credential_file: {{shared_credential_file}} | ||
{{/if}} | ||
{{#if aws.shared_credential_file}} | ||
shared_credential_file: {{aws.shared_credential_file}} | ||
{{/if}} | ||
{{#if credential_profile_name}} | ||
credential_profile_name: {{credential_profile_name}} | ||
{{/if}} | ||
{{#if aws.credential_profile_name}} | ||
credential_profile_name: {{aws.credential_profile_name}} | ||
{{/if}} | ||
{{#if role_arn}} | ||
role_arn: {{role_arn}} | ||
{{/if}} | ||
{{#if aws.role_arn}} | ||
role_arn: {{aws.role_arn}} | ||
{{/if}} | ||
{{#if aws.credentials.external_id}} | ||
external_id: {{aws.credentials.external_id}} | ||
{{/if}} | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
what's the reasoning behind major version upgrade?
So far, we kept it in sync with major stack versions
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We are at version 3. I perceived this to be a breaking change, warranting a major version change.