Skip to content

Commit

Permalink
Merge pull request #39 from souza-dan/aws-provider
Browse files Browse the repository at this point in the history
DEV-15168 - Removes AWS provider requirement
  • Loading branch information
souza-dan authored Aug 5, 2022
2 parents bd2413d + 87cfb07 commit b331644
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 8 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# AWS Tamr Config Repo

## v2.4.5 - August 5th 2022
* Removes requirement on AWS provider

## v2.4.4 - June 16th 2022
* Allows `emr_service_access_sg_id` to make it visible in the render file.

Expand Down
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ This module creates:
| Name | Version |
|------|---------|
| terraform | >= 0.13 |
| aws | >= 3.36.0, < 4.0.0 |

## Providers

Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.4.4
2.4.5
2 changes: 1 addition & 1 deletion examples/complete/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ This example demonstrates a terraform-generated Tamr config for a full aws-scale
- static EMR deployment running both HBase and Spark
- data bucket and logs bucket shared by both HBase and Spark
- newly-generated EC2 key pair (used by both Tamr VM and EMR EC2 instances)
- Elasticsearch domain
- OpenSearch domain
- RDS Postgres instance
- Tamr VM deployment
- VPC with 4 subnets according to reference network architecture
Expand Down
4 changes: 2 additions & 2 deletions examples/ephemeral-spark/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ This example demonstrates a terraform-generated Tamr config for a full aws-scale
- EMR deployment setting up infra for ephemeral Spark cluster
- data bucket and logs bucket to be shared by static HBase cluster and ephemeral Spark clusters
- newly-generated EC2 key pair (used by both Tamr VM and EMR EC2 instances)
- Elasticsearch domain
- OpenSearch domain
- RDS Postgres instance
- Tamr VM deployment

Expand Down Expand Up @@ -38,7 +38,7 @@ No requirements.
| ingress\_cidr\_blocks | List of CIDR blocks from which ingress to ElasticSearch domain, Tamr VM, Tamr Postgres instance are allowed (i.e. VPN CIDR) | `list(string)` | `[]` | no |
| name\_prefix | A prefix to add to the names of all created resources. | `string` | `"tamr-config-ephemeral"` | no |
| path\_to\_spark\_logs | Path in logs bucket to store spark logs. E.g. tamr/spark-logs | `string` | `""` | no |
| s3\_bucket\_logging | The name of S3 bucket where to store S3 server access logs. | `string` | `""` | no |
| s3\_bucket\_logging | The name of an existing S3 bucket where to store S3 server access logs. | `string` | `""` | no |
| tags | Map of tags to add to resources. | `map(string)` | `{}` | no |

## Outputs
Expand Down
3 changes: 0 additions & 3 deletions versions.tf
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
terraform {
required_version = ">= 0.13"
required_providers {
aws = ">= 3.36.0, < 4.0.0"
}
}

0 comments on commit b331644

Please sign in to comment.