Skip to content

Commit ef32f96

Browse files
nachoy2kIgnacio Martinezcloudpossebot
authored
Update AWS provider to 4.49.0 to support gp3 as storage type (#151)
* Update AWS provider to 4.49.0 to support gp3 as storage type * Auto Format --------- Co-authored-by: Ignacio Martinez <[email protected]> Co-authored-by: cloudpossebot <[email protected]>
1 parent 9ae80a2 commit ef32f96

File tree

6 files changed

+12
-12
lines changed

6 files changed

+12
-12
lines changed

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -219,13 +219,13 @@ Available targets:
219219
| Name | Version |
220220
|------|---------|
221221
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.0.0 |
222-
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 4.9.0 |
222+
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 4.49.0 |
223223

224224
## Providers
225225

226226
| Name | Version |
227227
|------|---------|
228-
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 4.9.0 |
228+
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 4.49.0 |
229229

230230
## Modules
231231

@@ -317,7 +317,7 @@ Available targets:
317317
| <a name="input_snapshot_identifier"></a> [snapshot\_identifier](#input\_snapshot\_identifier) | Snapshot identifier e.g: rds:production-2019-06-26-06-05. If specified, the module create cluster from the snapshot | `string` | `null` | no |
318318
| <a name="input_stage"></a> [stage](#input\_stage) | ID element. Usually used to indicate role, e.g. 'prod', 'staging', 'source', 'build', 'test', 'deploy', 'release' | `string` | `null` | no |
319319
| <a name="input_storage_encrypted"></a> [storage\_encrypted](#input\_storage\_encrypted) | (Optional) Specifies whether the DB instance is encrypted. The default is false if not specified | `bool` | `true` | no |
320-
| <a name="input_storage_type"></a> [storage\_type](#input\_storage\_type) | One of 'standard' (magnetic), 'gp2' (general purpose SSD), or 'io1' (provisioned IOPS SSD) | `string` | `"standard"` | no |
320+
| <a name="input_storage_type"></a> [storage\_type](#input\_storage\_type) | One of 'standard' (magnetic), 'gp2' (general purpose SSD), 'gp3' (general purpose SSD), or 'io1' (provisioned IOPS SSD) | `string` | `"standard"` | no |
321321
| <a name="input_subnet_ids"></a> [subnet\_ids](#input\_subnet\_ids) | List of subnet IDs for the DB. DB instance will be created in the VPC associated with the DB subnet group provisioned using the subnet IDs. Specify one of `subnet_ids`, `db_subnet_group_name` or `availability_zone` | `list(string)` | `[]` | no |
322322
| <a name="input_tags"></a> [tags](#input\_tags) | Additional tags (e.g. `{'BusinessUnit': 'XYZ'}`).<br>Neither the tag keys nor the tag values will be modified by this module. | `map(string)` | `{}` | no |
323323
| <a name="input_tenant"></a> [tenant](#input\_tenant) | ID element \_(Rarely used, not included by default)\_. A customer identifier, indicating who this instance of a resource is for | `string` | `null` | no |
@@ -429,7 +429,7 @@ In general, PRs are welcome. We follow the typical "fork-and-pull" Git workflow.
429429

430430
## Copyright
431431

432-
Copyright © 2017-2022 [Cloud Posse, LLC](https://cpco.io/copyright)
432+
Copyright © 2017-2023 [Cloud Posse, LLC](https://cpco.io/copyright)
433433

434434

435435

docs/terraform.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
| Name | Version |
55
|------|---------|
66
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.0.0 |
7-
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 4.9.0 |
7+
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 4.49.0 |
88

99
## Providers
1010

1111
| Name | Version |
1212
|------|---------|
13-
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 4.9.0 |
13+
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 4.49.0 |
1414

1515
## Modules
1616

@@ -102,7 +102,7 @@
102102
| <a name="input_snapshot_identifier"></a> [snapshot\_identifier](#input\_snapshot\_identifier) | Snapshot identifier e.g: rds:production-2019-06-26-06-05. If specified, the module create cluster from the snapshot | `string` | `null` | no |
103103
| <a name="input_stage"></a> [stage](#input\_stage) | ID element. Usually used to indicate role, e.g. 'prod', 'staging', 'source', 'build', 'test', 'deploy', 'release' | `string` | `null` | no |
104104
| <a name="input_storage_encrypted"></a> [storage\_encrypted](#input\_storage\_encrypted) | (Optional) Specifies whether the DB instance is encrypted. The default is false if not specified | `bool` | `true` | no |
105-
| <a name="input_storage_type"></a> [storage\_type](#input\_storage\_type) | One of 'standard' (magnetic), 'gp2' (general purpose SSD), or 'io1' (provisioned IOPS SSD) | `string` | `"standard"` | no |
105+
| <a name="input_storage_type"></a> [storage\_type](#input\_storage\_type) | One of 'standard' (magnetic), 'gp2' (general purpose SSD), 'gp3' (general purpose SSD), or 'io1' (provisioned IOPS SSD) | `string` | `"standard"` | no |
106106
| <a name="input_subnet_ids"></a> [subnet\_ids](#input\_subnet\_ids) | List of subnet IDs for the DB. DB instance will be created in the VPC associated with the DB subnet group provisioned using the subnet IDs. Specify one of `subnet_ids`, `db_subnet_group_name` or `availability_zone` | `list(string)` | `[]` | no |
107107
| <a name="input_tags"></a> [tags](#input\_tags) | Additional tags (e.g. `{'BusinessUnit': 'XYZ'}`).<br>Neither the tag keys nor the tag values will be modified by this module. | `map(string)` | `{}` | no |
108108
| <a name="input_tenant"></a> [tenant](#input\_tenant) | ID element \_(Rarely used, not included by default)\_. A customer identifier, indicating who this instance of a resource is for | `string` | `null` | no |

examples/complete/variables.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ variable "db_subnet_group_name" {
5151

5252
variable "storage_type" {
5353
type = string
54-
description = "One of 'standard' (magnetic), 'gp2' (general purpose SSD), or 'io1' (provisioned IOPS SSD)"
54+
description = "One of 'standard' (magnetic), 'gp2' (general purpose SSD), 'gp3' (general purpose SSD), or 'io1' (provisioned IOPS SSD)"
5555
}
5656

5757
variable "storage_encrypted" {

examples/mssql/variables.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ variable "multi_az" {
5454

5555
variable "storage_type" {
5656
type = string
57-
description = "One of 'standard' (magnetic), 'gp2' (general purpose SSD), or 'io1' (provisioned IOPS SSD)"
57+
description = "One of 'standard' (magnetic), 'gp2' (general purpose SSD), 'gp3' (general purpose SSD), or 'io1' (provisioned IOPS SSD)"
5858
}
5959

6060
variable "storage_encrypted" {

variables.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ variable "multi_az" {
6565

6666
variable "storage_type" {
6767
type = string
68-
description = "One of 'standard' (magnetic), 'gp2' (general purpose SSD), or 'io1' (provisioned IOPS SSD)"
68+
description = "One of 'standard' (magnetic), 'gp2' (general purpose SSD), 'gp3' (general purpose SSD), or 'io1' (provisioned IOPS SSD)"
6969
default = "standard"
7070
}
7171

versions.tf

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ terraform {
44
required_providers {
55
aws = {
66
source = "hashicorp/aws"
7-
version = ">= 4.9.0"
7+
version = ">= 4.49.0"
88
}
99
}
10-
}
10+
}

0 commit comments

Comments
 (0)