33Configure Sumo Logic Applications and Connections using Terraform modules.
44The modules configure/create the following resources:
55- A source under the specified collector for the integration in Sumo Logic.
6- - App dashboards in the specified folder.
6+ - App dashboards in the specified folder in Sumo Logic .
77- Webhook configurations in JIRA, Bitbucket or other chosen systems.
88
99## Getting Started
@@ -48,23 +48,23 @@ Sumo Logic Connections do not need a collector or folder.
4848Configure the collector resource as below:
4949
5050` ` ` shell
51- resource " sumologic_collector" " atlassian_collector " {
52- name = " Atlassian"
51+ resource " sumologic_collector" " sumo_atlassian_collector " {
52+ name = " SumoLogic Atlassian"
5353 category = " Atlassian"
5454}
5555` ` `
5656
57- In the module declaration, pass the collector id as ` sumologic_collector.atlassian_collector .id` .
57+ In the module declaration, pass the collector id as ` sumologic_collector.sumo_atlassian_collector .id` .
5858
5959Configure a folder as below:
6060
6161` ` ` shell
6262data " sumologic_personal_folder" " personalFolder" {}
6363resource " sumologic_folder" " folder" {
64- name = " Atlassian"
65- description = " Atlassian Applications"
64+ name = " SumoLogic Atlassian"
65+ description = " SumoLogic Atlassian Applications"
6666 parent_id = data.sumologic_personal_folder.personalFolder.id
67- depends_on = [sumologic_collector.atlassian_collector ]
67+ depends_on = [sumologic_collector.sumo_atlassian_collector ]
6868}
6969` ` `
7070
@@ -80,7 +80,7 @@ module "sumologic-jira-cloud-app" {
8080 sumo_access_id = " <SUMOLOGIC ACCESS ID>"
8181 sumo_access_key = " <SUMOLOGIC ACCESS KEY>"
8282 sumo_api_endpoint = " <SUMOLOGIC ENDPOINT URI>"
83- collector_id = sumologic_collector.atlassian_collector .id
83+ collector_id = sumologic_collector.sumo_atlassian_collector .id
8484 source_category = " Atlassian/Cloud/Jira"
8585 folder_id = sumologic_folder.folder.id
8686 jira_cloud_jql = " " # Optional
0 commit comments