Skip to content

Commit 42ae484

Browse files
committed
Updated Readme
1 parent 7ac82fa commit 42ae484

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

README.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)