Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 0 additions & 7 deletions modules/aws-athena/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,3 @@

* **aws-glue, aws-athena:** add Glue and Athena Terraform modules ([0c9266c](https://github.com/kloia/platform-modules/commit/0c9266c0a6f43c5c1f5248a2ff022b5b7d6b1914))
* **main:** add glue and athena modules ([#321](https://github.com/kloia/platform-modules/issues/321)) ([0c9266c](https://github.com/kloia/platform-modules/commit/0c9266c0a6f43c5c1f5248a2ff022b5b7d6b1914))

## 0.1.0 (2026-05-22)


### Features

* add aws-athena module with Athena workgroup and named query support
2 changes: 1 addition & 1 deletion modules/aws-athena/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ variable "encryption_option" {
default = null

validation {
condition = var.encryption_option == null || contains(["SSE_S3", "SSE_KMS", "CSE_KMS"], var.encryption_option)
condition = var.encryption_option == null ? true : contains(["SSE_S3", "SSE_KMS", "CSE_KMS"], var.encryption_option)
error_message = "encryption_option must be SSE_S3, SSE_KMS, CSE_KMS, or null."
}
}
Expand Down
7 changes: 0 additions & 7 deletions modules/aws-glue/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,3 @@

* **aws-glue, aws-athena:** add Glue and Athena Terraform modules ([0c9266c](https://github.com/kloia/platform-modules/commit/0c9266c0a6f43c5c1f5248a2ff022b5b7d6b1914))
* **main:** add glue and athena modules ([#321](https://github.com/kloia/platform-modules/issues/321)) ([0c9266c](https://github.com/kloia/platform-modules/commit/0c9266c0a6f43c5c1f5248a2ff022b5b7d6b1914))

## 0.1.0 (2026-05-22)


### Features

* add aws-glue module with Glue catalog database and S3 crawler support
Loading