Skip to content

Commit 850efc4

Browse files
committed
Support s3-express for gateway-endpoint
1 parent 2a00109 commit 850efc4

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.5.0
1+
0.5.1

modules/vpc-gateway-endpoint/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ This module creates following resources.
4040
| Name | Description | Type | Default | Required |
4141
|------|-------------|------|---------|:--------:|
4242
| <a name="input_name"></a> [name](#input\_name) | (Required) Desired name for the VPC Gateway Endpoint. | `string` | n/a | yes |
43-
| <a name="input_service"></a> [service](#input\_service) | (Required) The AWS service name. Valid values are `DYNAMODB`, `S3`. | `string` | n/a | yes |
43+
| <a name="input_service"></a> [service](#input\_service) | (Required) The AWS service name. Valid values are `DYNAMODB`, `S3`, `S3EXPRESS`. | `string` | n/a | yes |
4444
| <a name="input_vpc_id"></a> [vpc\_id](#input\_vpc\_id) | (Required) The ID of the VPC in which the endpoint will be used. | `string` | n/a | yes |
4545
| <a name="input_module_tags_enabled"></a> [module\_tags\_enabled](#input\_module\_tags\_enabled) | (Optional) Whether to create AWS Resource Tags for the module informations. | `bool` | `true` | no |
4646
| <a name="input_policy"></a> [policy](#input\_policy) | (Optional) A policy to attach to the endpoint that controls access to the service. This is a JSON formatted string. Defaults to full access. All Gateway endpoints support policies. | `string` | `null` | no |

modules/vpc-gateway-endpoint/variables.tf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@ variable "name" {
55
}
66

77
variable "service" {
8-
description = "(Required) The AWS service name. Valid values are `DYNAMODB`, `S3`."
8+
description = "(Required) The AWS service name. Valid values are `DYNAMODB`, `S3`, `S3EXPRESS`."
99
type = string
1010
nullable = false
1111

1212
validation {
13-
condition = contains(["DYNAMODB", "S3"], var.service)
14-
error_message = "Valid values are `DYNAMODB` and `S3`."
13+
condition = contains(["DYNAMODB", "S3", "S3EXPRESS"], var.service)
14+
error_message = "Valid values are `DYNAMODB`, `S3` and `S3EXPRESS`."
1515
}
1616
}
1717

0 commit comments

Comments
 (0)