-
Notifications
You must be signed in to change notification settings - Fork 57
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
SUMO-227092: Support terraform for azure event hub log source #590
Conversation
@@ -1,4 +1,6 @@ | |||
## 2.27.1 (Unreleased) | |||
FEATURES: | |||
* **New Resource:** sumologic_azure_event_hub_log_source (GH-590) |
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.
Is there a way to indicate that this feature is in Beta?
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.
I think we usually added description of XXX is in beta
in markdown file: website/docs/r/azure_event_hub_log_source.html.markdown
@@ -1,4 +1,6 @@ | |||
## 2.27.1 (Unreleased) | |||
FEATURES: | |||
* **New Resource:** sumologic_azure_event_hub_log_source (GH-590) |
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.
I think we usually added description of XXX is in beta
in markdown file: website/docs/r/azure_event_hub_log_source.html.markdown
+ `region` - (Optional) The value can be either "Commercial" for azure or "US Gov" for azure gov. Default is for azure. | ||
|
||
[1]: https://help.sumologic.com/Send_Data/Sources/03Use_JSON_to_Configure_Sources/JSON_Parameters_for_Hosted_Sources | ||
[2]: https://help.sumologic.com/03Send-Data/Sources/02Sources-for-Hosted-Collectors/XXX |
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.
Do we have a real azure event hub doc page?
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 don't have it yet, so I listed it as a TODO item in the description. I'm not sure if we should merge this PR first and then update the link or if we shouldn't include the dummy link at all.
|
@@ -2,7 +2,7 @@ | |||
layout: "sumologic" | |||
page_title: "SumoLogic: sumologic_polling_source" | |||
description: |- | |||
Provides a Sumologic Polling source. This source is used to import data from various AWS products. | |||
Provides a Sumologic Polling source. This source is used to import data from various AWS and Azure products. |
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.
No need to edit this as this source is deprecated already.
+ `consumer_group` - (Required) The consumer group of the event hub. | ||
+ `region` - (Optional) The region of the event hub. The value can be either `Commercial` for Azure, or `US Gov` for Azure Government. Defaults to `Commercial`. | ||
|
||
[1]: https://help.sumologic.com/03Send-Data/Sources/02Sources-for-Hosted-Collectors/XXX |
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 should remove the link as this will be a broken link until a helpdoc page is added.
plox test |
plox test |
PR description:
Added a new resource sumologic_azure_event_hub_log_source in terraform for the new azure source.
Tests performed:
NOTE: There is a TODO item in
azure_event_hub_log_source.html.markdown
. We should add a page for Azure Event Hub Log Source under the section https://help.sumologic.com/03Send-Data/Sources/02Sources-for-Hosted-Collectors/ . Then we need to update this doc once we have that page.