File tree Expand file tree Collapse file tree 6 files changed +14
-6
lines changed
Expand file tree Collapse file tree 6 files changed +14
-6
lines changed Original file line number Diff line number Diff line change @@ -211,6 +211,7 @@ module "atlantis" {
211211| Name | Version |
212212|------|---------|
213213| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.0 |
214+ | <a name="requirement_aws"></a> [aws](#requirement\_aws) | ~> 5.0 |
214215
215216# # Providers
216217
Original file line number Diff line number Diff line change @@ -20,15 +20,15 @@ Note that this example may create resources which cost money. Run `terraform des
2020| Name | Version |
2121| ------| ---------|
2222| <a name =" requirement_terraform " ></a > [ terraform] ( #requirement\_ terraform ) | >= 1.0 |
23- | <a name =" requirement_aws " ></a > [ aws] ( #requirement\_ aws ) | >= 5.0 |
23+ | <a name =" requirement_aws " ></a > [ aws] ( #requirement\_ aws ) | ~ > 5.0 |
2424| <a name =" requirement_github " ></a > [ github] ( #requirement\_ github ) | >= 5.0 |
2525| <a name =" requirement_random " ></a > [ random] ( #requirement\_ random ) | >= 3.0 |
2626
2727## Providers
2828
2929| Name | Version |
3030| ------| ---------|
31- | <a name =" provider_aws " ></a > [ aws] ( #provider\_ aws ) | >= 5.0 |
31+ | <a name =" provider_aws " ></a > [ aws] ( #provider\_ aws ) | ~ > 5.0 |
3232| <a name =" provider_random " ></a > [ random] ( #provider\_ random ) | >= 3.0 |
3333
3434## Modules
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ terraform {
44 required_providers {
55 aws = {
66 source = " hashicorp/aws"
7- version = " >= 5.0"
7+ version = " ~> 5.0"
88 }
99
1010 github = {
Original file line number Diff line number Diff line change @@ -20,15 +20,15 @@ Note that this example may create resources which cost money. Run `terraform des
2020| Name | Version |
2121| ------| ---------|
2222| <a name =" requirement_terraform " ></a > [ terraform] ( #requirement\_ terraform ) | >= 1.0 |
23- | <a name =" requirement_aws " ></a > [ aws] ( #requirement\_ aws ) | >= 5.0 |
23+ | <a name =" requirement_aws " ></a > [ aws] ( #requirement\_ aws ) | ~ > 5.0 |
2424| <a name =" requirement_github " ></a > [ github] ( #requirement\_ github ) | >= 5.0 |
2525| <a name =" requirement_random " ></a > [ random] ( #requirement\_ random ) | >= 3.0 |
2626
2727## Providers
2828
2929| Name | Version |
3030| ------| ---------|
31- | <a name =" provider_aws " ></a > [ aws] ( #provider\_ aws ) | >= 5.0 |
31+ | <a name =" provider_aws " ></a > [ aws] ( #provider\_ aws ) | ~ > 5.0 |
3232| <a name =" provider_random " ></a > [ random] ( #provider\_ random ) | >= 3.0 |
3333
3434## Modules
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ terraform {
44 required_providers {
55 aws = {
66 source = " hashicorp/aws"
7- version = " >= 5.0"
7+ version = " ~> 5.0"
88 }
99
1010 github = {
Original file line number Diff line number Diff line change 11terraform {
22 required_version = " >= 1.0"
3+
4+ required_providers {
5+ aws = {
6+ source = " hashicorp/aws"
7+ version = " ~> 5.0"
8+ }
9+ }
310}
You can’t perform that action at this time.
0 commit comments