diff --git a/README.adoc b/README.adoc index 6136a08..7a9870d 100644 --- a/README.adoc +++ b/README.adoc @@ -114,4 +114,4 @@ a `.parquet` file is added to the bucket/prefix. == Licensing -This repository is licensed under the link:https://www.gnu.org/licenses/agpl-3.0.en.html[AGPL 3.0]. If your organization is interested in re-licensing this function for re-use, contact me via email for commercial licensing terms: `rtyler@brokenco.de` +This repository is licensed under the link:https://www.gnu.org/licenses/agpl-3.0.en.html[AGPL 3.0]. If your organization is interested in re-licensing this function for re-use, contact me via email for commercial licensing terms: `rtyler@buoyantdata.com` diff --git a/deployment/advanced.tf b/deployment/advanced.tf index f0383cb..23a7788 100644 --- a/deployment/advanced.tf +++ b/deployment/advanced.tf @@ -111,7 +111,7 @@ resource "aws_lambda_permission" "advanced-allow-bucket" { # tables. resource "aws_dynamodb_table" "oxbow_advanced_locking" { name = "oxbow_advanced_lock_table" - billing_mode = "PROVISIONED" + billing_mode = "PAY_PER_REQUEST" # Default name of the partition key hard-coded in delta-rs hash_key = "key" read_capacity = 10 diff --git a/deployment/simple.tf b/deployment/simple.tf index 25df5ab..e6c19b0 100644 --- a/deployment/simple.tf +++ b/deployment/simple.tf @@ -112,7 +112,7 @@ resource "aws_iam_role" "iam_for_lambda" { # tables. resource "aws_dynamodb_table" "oxbow_locking" { name = "oxbow_lock_table" - billing_mode = "PROVISIONED" + billing_mode = "PAY_PER_REQUEST" # Default name of the partition key hard-coded in delta-rs hash_key = "key" read_capacity = 10