Skip to content

Commit

Permalink
ensure we can take v3 of the aws provider (#62)
Browse files Browse the repository at this point in the history
* ensure we can take v3 of the aws provider

* change pinning

* updated as requested

* updates as requested

* fix whitespace

* Updated README.md

Co-authored-by: actions-bot <[email protected]>
  • Loading branch information
jurgenweber and actions-bot authored Sep 3, 2020
1 parent 85d6491 commit 1e58b92
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 @@ -197,19 +197,20 @@ Available targets:
```
<!-- markdownlint-restore -->
<!-- markdownlint-disable -->
## Requirements

| Name | Version |
|------|---------|
| terraform | >= 0.12.0 |
| aws | ~> 2.0 |
| aws | >= 2.0 |
| null | ~> 2.0 |

## Providers

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

## Inputs
Expand Down Expand Up @@ -258,6 +259,7 @@ Available targets:
| table\_stream\_arn | DynamoDB table stream ARN |
| table\_stream\_label | DynamoDB table stream label |

<!-- markdownlint-restore -->



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

| Name | Version |
|------|---------|
| terraform | >= 0.12.0 |
| aws | ~> 2.0 |
| aws | >= 2.0 |
| null | ~> 2.0 |

## Providers

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

## Inputs
Expand Down Expand Up @@ -59,3 +60,4 @@
| table\_stream\_arn | DynamoDB table stream ARN |
| table\_stream\_label | DynamoDB table stream label |

<!-- 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"

required_providers {
aws = "~> 2.0"
aws = ">= 2.0"
null = "~> 2.0"
}
}

0 comments on commit 1e58b92

Please sign in to comment.