-
Notifications
You must be signed in to change notification settings - Fork 0
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
[Filebeat][Salesforce] Add Salesforce filebeat module #2
Changes from 2 commits
e126dd4
24425fa
38a0cb7
2f7de2a
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 |
---|---|---|
@@ -0,0 +1,127 @@ | ||
- module: salesforce | ||
|
||
apex-rest: | ||
enabled: false | ||
|
||
# Oauth Client ID | ||
# var.client_id: "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||
|
||
# Oauth Client Secret | ||
# var.client_secret: "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||
|
||
# Oauth Token URL | ||
# var.token_url: "https://login.salesforce.com/services/oauth2/token" | ||
|
||
# Oauth User, should include the User mail | ||
# var.user: "[email protected]" | ||
|
||
# Oauth password, should include the User password | ||
# var.password: "P@$$W0₹D" | ||
|
||
# URL, should include the instance_url | ||
# var.url: "https://instance_id.my.salesforce.com" | ||
|
||
login-rest: | ||
enabled: false | ||
|
||
# Oauth Client ID | ||
# var.client_id: "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||
|
||
# Oauth Client Secret | ||
# var.client_secret: "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||
|
||
# Oauth Token URL | ||
# var.token_url: "https://login.salesforce.com/services/oauth2/token" | ||
|
||
# Oauth User, should include the User mail | ||
# var.user: "[email protected]" | ||
|
||
# Oauth password, should include the User password | ||
# var.password: "P@$$W0₹D" | ||
|
||
# URL, should include the instance_url | ||
# var.url: "https://instance_id.my.salesforce.com" | ||
|
||
login-stream: | ||
enabled: false | ||
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. Do you think that any of these filesets should be enabled by default? I mean, whenever user enables the filebeat module. 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. That's right, I thought of the same and tried that out earlier. But I faced the following, and hence decided to go with false. |
||
|
||
# Oauth Client ID | ||
# var.client_id: "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||
|
||
# Oauth Client Secret | ||
# var.client_secret: "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||
|
||
# Oauth Token URL | ||
# var.token_url: "https://login.salesforce.com/services/oauth2/token" | ||
|
||
# Oauth User, should include the User mail | ||
# var.user: "[email protected]" | ||
|
||
# Oauth password, should include the User password | ||
# var.password: "P@$$W0₹D" | ||
|
||
# URL, should include the instance_url | ||
# var.url: "https://instance_id.my.salesforce.com" | ||
|
||
logout-rest: | ||
enabled: false | ||
|
||
# Oauth Client ID | ||
# var.client_id: "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||
|
||
# Oauth Client Secret | ||
# var.client_secret: "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||
|
||
# Oauth Token URL | ||
# var.token_url: "https://login.salesforce.com/services/oauth2/token" | ||
|
||
# Oauth User, should include the User mail | ||
# var.user: "[email protected]" | ||
|
||
# Oauth password, should include the User password | ||
# var.password: "P@$$W0₹D" | ||
|
||
# URL, should include the instance_url | ||
# var.url: "https://instance_id.my.salesforce.com" | ||
|
||
logout-stream: | ||
enabled: false | ||
|
||
# Oauth Client ID | ||
# var.client_id: "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||
|
||
# Oauth Client Secret | ||
# var.client_secret: "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||
|
||
# Oauth Token URL | ||
# var.token_url: "https://login.salesforce.com/services/oauth2/token" | ||
|
||
# Oauth User, should include the User mail | ||
# var.user: "[email protected]" | ||
|
||
# Oauth password, should include the User password | ||
# var.password: "P@$$W0₹D" | ||
|
||
# URL, should include the instance_url | ||
# var.url: "https://instance_id.my.salesforce.com" | ||
|
||
setupaudittrail-rest: | ||
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'm wondering if we should name it: setup-audit-trail. @yug-crest Did you face any problems with dashes there? I'm just considering which form fits better: setupaudittrail vs setup-audit-trail. 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. Valid point, I thought of using 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. Could please ping @akshay-saraswat about the preference? 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 don't have a preference. 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. Sure, |
||
enabled: false | ||
|
||
# Oauth Client ID | ||
# var.client_id: "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||
|
||
# Oauth Client Secret | ||
# var.client_secret: "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||
|
||
# Oauth Token URL | ||
# var.token_url: "https://login.salesforce.com/services/oauth2/token" | ||
|
||
# Oauth User, should include the User mail | ||
# var.user: "[email protected]" | ||
|
||
# Oauth password, should include the User password | ||
# var.password: "P@$$W0₹D" | ||
|
||
# URL, should include the instance_url | ||
# var.url: "https://instance_id.my.salesforce.com" |
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.
@marc-gr Do you know if there is an option to set secrets in one place instead of per-config?