Skip to content

Commit 1019917

Browse files
authored
Merge pull request #12 from rackspace-infrastructure-automation/aws_provider_update
Update AWS provider version
2 parents 14e5974 + 76364b8 commit 1019917

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ The following module variables were updated to better meet current Rackspace sty
6161

6262
| Name | Version |
6363
|------|---------|
64-
| aws | >= 2.1.0 |
64+
| aws | >= 2.7.0 |
6565

6666
## Inputs
6767

@@ -72,11 +72,11 @@ The following module variables were updated to better meet current Rackspace sty
7272
| enable\_ttl | Enable time to live on record. | `bool` | `false` | no |
7373
| environment | Application environment for which this resource is being created. Preferred values are Development, Integration, PreProduction, Production, QA, Staging, or Test. | `string` | `"Development"` | no |
7474
| global\_secondary\_index\_maps | A list of maps for each [global secondary index (GSI)](https://www.terraform.io/docs/providers/aws/r/dynamodb_table.html#global_secondary_index-1). Please see [examples](./examples) for usage. | `any` | `[]` | no |
75-
| hash\_key | \*\*Forces new resource!\*\* Must contain only alphanumberic characters, dash (-), underscore (\_) or dot (.). Needs to be defined by type in attributes. | `string` | n/a | yes |
75+
| hash\_key | **Forces new resource!** Must contain only alphanumberic characters, dash (-), underscore (\_) or dot (.). Needs to be defined by type in attributes. | `string` | n/a | yes |
7676
| local\_secondary\_index\_maps | A list of maps for each [local secondary index (LSI)](https://www.terraform.io/docs/providers/aws/r/dynamodb_table.html#local_secondary_index-1). Please see [examples](./examples) for usage. | `any` | `[]` | no |
7777
| name | The name of the table, this needs to be unique within a region. | `string` | n/a | yes |
7878
| point\_in\_time\_recovery | Enable point in time recovery for the table. | `bool` | `false` | no |
79-
| range\_key | \*\*Forces new resource!\*\* RangeType PrimaryKey Name. If used, it will need to be defined by type in attributes | `string` | `""` | no |
79+
| range\_key | **Forces new resource!** RangeType PrimaryKey Name. If used, it will need to be defined by type in attributes | `string` | `""` | no |
8080
| read\_capacity\_units | Provisioned read throughput. Should be between 5 and 10000. Ignored if `enable_pay_per_request` is set to `true`. | `number` | `5` | no |
8181
| stream\_enabled | Enable the stream setting on the table. | `bool` | `false` | no |
8282
| stream\_view\_type | If using `stream_enabled, you can specify a valid DynamoDB StreamViewType; must be one of: `KEYS\_ONLY`, `NEW\_IMAGE`. `OLD\_IMAGE`, `NEW\_AND\_OLD\_IMAGES | `string` | `""` | no |

examples/example.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ terraform {
33
}
44

55
provider "aws" {
6-
version = "~> 2.2"
6+
version = "~> 2.7"
77
region = "us-west-2"
88
}
99

main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ terraform {
6464
required_version = ">= 0.12"
6565

6666
required_providers {
67-
aws = ">= 2.1.0"
67+
aws = ">= 2.7.0"
6868
}
6969
}
7070

tests/default/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ terraform {
33
}
44

55
provider "aws" {
6-
version = "~> 2.2"
6+
version = "~> 2.7"
77
region = "us-west-2"
88
}
99

0 commit comments

Comments
 (0)