Skip to content

Commit

Permalink
fix: update aws provider version for dep (#32)
Browse files Browse the repository at this point in the history
* fix: update aws provider version for dep

* Update versions.tf

Co-authored-by: Vladimir <[email protected]>

* Updated README.md

Co-authored-by: Vladimir <[email protected]>
Co-authored-by: actions-bot <[email protected]>
  • Loading branch information
3 people authored Oct 15, 2020
1 parent c89de07 commit 630082f
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -131,20 +131,21 @@ Available targets:
```
<!-- markdownlint-restore -->
<!-- markdownlint-disable -->
## Requirements

| Name | Version |
|------|---------|
| terraform | >= 0.12.0, < 0.14.0 |
| aws | ~> 2.0 |
| aws | >= 2.0 |
| null | ~> 2.0 |
| template | ~> 2.0 |

## Providers

| Name | Version |
|------|---------|
| aws | ~> 2.0 |
| aws | >= 2.0 |

## Inputs

Expand Down Expand Up @@ -229,6 +230,7 @@ Available targets:
| launch\_template\_arn | The ARN of the launch template |
| launch\_template\_id | The ID of the launch template |

<!-- markdownlint-restore -->



Expand Down
6 changes: 4 additions & 2 deletions docs/terraform.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,18 @@
<!-- markdownlint-disable -->
## Requirements

| Name | Version |
|------|---------|
| terraform | >= 0.12.0, < 0.14.0 |
| aws | ~> 2.0 |
| aws | >= 2.0 |
| null | ~> 2.0 |
| template | ~> 2.0 |

## Providers

| Name | Version |
|------|---------|
| aws | ~> 2.0 |
| aws | >= 2.0 |

## Inputs

Expand Down Expand Up @@ -96,3 +97,4 @@
| launch\_template\_arn | The ARN of the launch template |
| launch\_template\_id | The ID of the launch template |

<!-- markdownlint-restore -->
2 changes: 1 addition & 1 deletion versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ terraform {
required_version = ">= 0.12.0, < 0.14.0"

required_providers {
aws = "~> 2.0"
aws = ">= 2.0"
template = "~> 2.0"
null = "~> 2.0"
}
Expand Down

0 comments on commit 630082f

Please sign in to comment.