Skip to content

Commit

Permalink
Merge pull request #52 from lorengordon/bump
Browse files Browse the repository at this point in the history
Releases v3.0.0
  • Loading branch information
lorengordon authored Apr 3, 2020
2 parents d790c08 + e1e4844 commit 56c259e
Show file tree
Hide file tree
Showing 11 changed files with 23 additions and 136 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 2.0.0
current_version = 3.0.0
commit = True
message = Bumps version to {new_version}
tag = False
Expand Down
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,18 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/).

### 3.0.0

** Released**: 2020.04.03

**Commit Delta**: [Change from 2.0.0 release](https://github.com/plus3it/terraform-aws-tardigrade-vpc-endpoints/compare/2.0.0...3.0.0)

**Summary**:

* Uses `for_each` instead of `count` to gracefully handle changes in the list elements and ordering (backwards incompatible).
* Adds support for Gateway endpoints (s3 and dynamodb)
* Adds support for endpoints that can only be resolved by the `service_name` instead of the simple `service` name (E.g. sagemaker)

### 2.0.0

**Released**: 2019.11.1
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM plus3it/tardigrade-ci:0.0.13
FROM plus3it/tardigrade-ci:0.0.15

WORKDIR /ci-harness
ENTRYPOINT ["make"]
Expand Down
12 changes: 9 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,12 @@ make docs/generate
Then commit the updated files.

<!-- BEGIN TFDOCS -->
## Requirements

| Name | Version |
|------|---------|
| terraform | >= 0.12.9 |

## Providers

| Name | Version |
Expand All @@ -36,11 +42,11 @@ Then commit the updated files.
## Inputs

| Name | Description | Type | Default | Required |
|------|-------------|------|---------|:-----:|
| sg\_egress\_rules | Egress rules for the VPC Endpoint SecurityGroup(s). Set to empty list to disable default rules. | `list` | n/a | yes |
| sg\_ingress\_rules | Ingress rules for the VPC Endpoint SecurityGroup(s). Set to empty list to disable default rules. | `list` | n/a | yes |
|------|-------------|------|---------|:--------:|
| create\_sg\_per\_endpoint | Toggle to create a SecurityGroup for each VPC Endpoint. Defaults to using just one for all Interface Endpoints. Note that Gateway Endpoints don't support SecurityGroups. | `bool` | `false` | no |
| create\_vpc\_endpoints | Toggle to create VPC Endpoints. | `bool` | `true` | no |
| sg\_egress\_rules | Egress rules for the VPC Endpoint SecurityGroup(s). Set to empty list to disable default rules. | `list` | `null` | no |
| sg\_ingress\_rules | Ingress rules for the VPC Endpoint SecurityGroup(s). Set to empty list to disable default rules. | `list` | `null` | no |
| subnet\_ids | Target Subnet ids. | `list(string)` | `[]` | no |
| tags | A map of tags to add to the VPC Endpoint and to the SecurityGroup(s). | `map(string)` | `{}` | no |
| vpc\_endpoint\_services | List of AWS Endpoint service names that are used to create VPC Interface Endpoints. Both Gateway and Interface Endpoints are supported. See https://docs.aws.amazon.com/general/latest/gr/rande.html for full list. | `list(string)` | `[]` | no |
Expand Down
19 changes: 0 additions & 19 deletions tests/config_endpoint/README.md

This file was deleted.

19 changes: 0 additions & 19 deletions tests/fully_qualified_name_endpoint/README.md

This file was deleted.

19 changes: 0 additions & 19 deletions tests/gateway_type_endpoint/README.md

This file was deleted.

19 changes: 0 additions & 19 deletions tests/multiple_endpoints/README.md

This file was deleted.

17 changes: 0 additions & 17 deletions tests/no_create/README.md

This file was deleted.

19 changes: 0 additions & 19 deletions tests/no_endpoints/README.md

This file was deleted.

19 changes: 0 additions & 19 deletions tests/sg_per_endpoint/README.md

This file was deleted.

0 comments on commit 56c259e

Please sign in to comment.