diff --git a/CHANGELOG.md b/CHANGELOG.md index 8dff248..974d1ef 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # AWS Tamr Config Repo +## v2.7.0 - February 14th 2023 +* Sets default Core Connect provider to `S3` in `tamr-config.yml` + ## v2.6.0 - September 14th 2022 * Adds variable `emr_security_configuration` that is passed to the config `TAMR_DATASET_EMR_SECURITY_CONFIGURATION` diff --git a/README.md b/README.md index 4be44cb..bd760f1 100644 --- a/README.md +++ b/README.md @@ -53,6 +53,7 @@ This module creates: | emr\_managed\_master\_sg\_id | Security group ID of the EMR Managed Master Security Group. | `string` | `""` | no | | emr\_release\_label | The release label for the Amazon EMR release. | `string` | `"emr-5.29.0"` | no | | emr\_root\_volume\_size | The size, in GiB, of the EBS root device volume of the Linux AMI that is used for each EMR EC2 instance. | `string` | `"10"` | no | +| emr\_security\_configuration | Security configuration to attach to created EMR Spark clusters. Supported in Tamr v2022.009.0 and later. | `string` | `""` | no | | emr\_service\_access\_sg\_id | Security group ID of EMR Service Access Security Group. | `string` | `""` | no | | emr\_service\_role\_name | Name of IAM service role for EMR cluster. | `string` | `""` | no | | emr\_subnet\_id | ID of the subnet where the EMR cluster will be created. | `string` | `""` | no | diff --git a/examples/ephemeral-spark/README.md b/examples/ephemeral-spark/README.md index df61c52..63a68c7 100644 --- a/examples/ephemeral-spark/README.md +++ b/examples/ephemeral-spark/README.md @@ -45,6 +45,7 @@ No requirements. | Name | Description | |------|-------------| +| aws-sg-vm | n/a | | ec2-key | n/a | | emr-hbase | n/a | | ephemeral-spark-iam | n/a | diff --git a/examples/minimal/README.md b/examples/minimal/README.md index dc0a6a9..b7a5c97 100644 --- a/examples/minimal/README.md +++ b/examples/minimal/README.md @@ -41,6 +41,7 @@ No requirements. | Name | Description | |------|-------------| +| aws-sg-vm | n/a | | ec2-key | n/a | | elasticsearch | n/a | | emr | n/a | diff --git a/tamr-config.yml b/tamr-config.yml index 578183d..75472a3 100644 --- a/tamr-config.yml +++ b/tamr-config.yml @@ -60,3 +60,6 @@ TAMR_BACKUP_EMR_CLUSTER_ID: ${tamr_backup_emr_cluster_id} # DMS Config APPS_DMS_ENABLED: ${apps_dms_enabled} APPS_DMS_DEFAULT_CLOUD_PROVIDER: ${apps_dms_default_cloud_provider} + +# Core Connect +TAMR_CONNECT_DEFAULT_CLOUD_PROVIDER: S3