Skip to content

Commit 7afccbd

Browse files
author
Jonathan Thurman
authored
Merge pull request #4 from newrelic/jthurman/provider-version
fix(versions): Change version restrictions to allow newer providers
2 parents cef77f7 + ad9b8c6 commit 7afccbd

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ module "dummy-app-monitor" {
5656

5757
| Name | Version |
5858
|------|---------|
59-
| newrelic | ~> 1.9.0 |
59+
| newrelic | >= 1.15.1 |
6060

6161
## Inputs
6262

@@ -101,4 +101,4 @@ module "dummy-app-monitor" {
101101

102102
## License
103103

104-
Apache 2.0 Licensed. See LICENSE for full details.
104+
Apache 2.0 Licensed. See LICENSE for full details.

versions.tf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
terraform {
2-
required_version = "~> 0.12.6"
2+
required_version = ">= 0.12.6"
33

44
required_providers {
5-
newrelic = "~> 1.9.0"
5+
newrelic = ">= 1.15.1"
66
}
7-
}
7+
}

0 commit comments

Comments
 (0)