File tree Expand file tree Collapse file tree 1 file changed +25
-0
lines changed Expand file tree Collapse file tree 1 file changed +25
-0
lines changed Original file line number Diff line number Diff line change @@ -14,8 +14,33 @@ The modules configure/create the following resources:
1414
1515* [ Terraform 0.13+] ( https://www.terraform.io/downloads.html )
1616* [ curl] ( https://curl.haxx.se/download.html ) for App installations.
17+ * [ Sumo Logic Terraform Provider] ( https://registry.terraform.io/providers/SumoLogic/sumologic/latest )
18+ * [ Null Terraform Provider] ( https://registry.terraform.io/providers/hashicorp/null/latest ) .
1719* Respective Terraform providers based on selections.
1820
21+ Create a ` providers.tf ` file and add the requirements in the following format:
22+
23+ ``` shell
24+ terraform {
25+ required_version = " >= 0.13"
26+
27+ required_providers {
28+ null = {
29+ version = " ~> 2.1"
30+ }
31+ sumologic = {
32+ source = " sumologic/sumologic"
33+ version = " ~> 2.1.0"
34+ }
35+ jira = {
36+ source = " fourplusone/jira"
37+ version = " ~> 0.1.14"
38+ }
39+
40+ }
41+ }
42+ ```
43+
1944# ### Sumo Logic Provider
2045
2146` ` ` shell
You can’t perform that action at this time.
0 commit comments