Skip to content

Commit

Permalink
Bump app_version to v5.3.2 (closes #17)
Browse files Browse the repository at this point in the history
  • Loading branch information
jbeemster committed Mar 10, 2023
1 parent a2b9143 commit 8cbb966
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,12 @@ Transformer takes data from a enriched input stream and transforms this data and
```hcl
module "enriched_stream" {
source = "snowplow-devops/kinesis-stream/aws"
version = "0.2.0"
name = var.stream_name
}
module "transformed_bucket" {
source = "snowplow-devops/s3-bucket/aws"
version = "0.2.0"
bucket_name = var.transformed_bucket
}
Expand Down
5 changes: 3 additions & 2 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ locals {
module_version = "0.3.2"

app_name = "transformer-kinesis"
app_version = "5.3.1"
app_version = "5.3.2"

local_tags = {
Name = var.name
Expand Down Expand Up @@ -218,7 +218,8 @@ resource "aws_iam_policy" "iam_policy" {
Action = [
"s3:GetObject",
"s3:GetObjectVersion",
"s3:PutObject"
"s3:PutObject",
"s3:Delete*"
],
Resource = [
"arn:aws:s3:::${local.s3_path}",
Expand Down

0 comments on commit 8cbb966

Please sign in to comment.