Skip to content

Commit 9a3cd44

Browse files
committed
Merge branch 'develop' into eks
# Conflicts: # stack/vpc.py
2 parents 679e3c0 + 0609159 commit 9a3cd44

File tree

10 files changed

+436
-81
lines changed

10 files changed

+436
-81
lines changed

CHANGELOG.rst

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ What's new in 2.0.0:
2121

2222
* Add support for Elastic Kubernetes Service (EKS).
2323
* Re-purpose use_aes256_encryption flag to support encryption across S3, RDS, Elasticache (Redis only), and RDS (thanks @dsummersl)
24-
* Add support for Customer Managed CMKs with ``CustomerManagedCmkArn`` parameter
24+
* Add support for Customer Managed CMKs with ``CustomerManagedCmkArn`` parameter (not applied to public buckets)
2525
* Add configurable ContainerVolumeSize to change root volume size of EC2 instances (thanks @dsummersl)
2626
* Change generated template output from JSON to YAML (thanks @cchurch)
2727
* The stack no longer prompts for a ``SECRET_KEY`` if it won't be used for the stack type in question.
@@ -35,6 +35,10 @@ What's new in 2.0.0:
3535
* Add parameters to customize VPC and subnet IPv4 CIDR blocks (**It is generally not possible to change the CIDR blocks for an existing stack.**).
3636
* Add RDS and ElastiCache endpoint outputs.
3737
* Add CustomAppCertificateArn parameter to allow association with an existing ACM certificate.
38+
* Add VPC Endpoint for S3.
39+
* Add DatabaseReplication parameter to add a database replica (** this will fail if DatabaseBackupRetentionDays is 0.**).
40+
* Add optional SFTP server, including S3 bucket, transfer server, and user role and scopedown policy to use when creating
41+
users in the transfer server.
3842

3943

4044
`1.4.0`_ (2019-08-05)

README.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -340,6 +340,8 @@ These environment variables are:
340340
* ``DATABASE_URL``: The URL to the RDS instance created as part of this stack. If ``(none)`` is
341341
selected for the ``DatabaseClass`` during stack creation, the value of this variable will be
342342
an empty string (``''``).
343+
* ``DATABASE_REPLICA_URL``: The URL to the RDS database replica instance. This is an empty string
344+
if there's no replica database.
343345
* ``CACHE_URL``: The URL to the Redis or Memcached instance created as part of this stack (may be
344346
used as a cache or session storage, e.g.). If using Redis, note that it supports multiple
345347
databases and no database ID is included as part of the URL, so you should append a forward slash

stack/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import os
22

3+
from . import sftp # noqa: F401
34
from . import assets # noqa: F401
45
from . import cache # noqa: F401
56
from . import database # noqa: F401

0 commit comments

Comments
 (0)