Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feat: Feature AWS Athena Terraform module 🚀 #1

Merged
merged 8 commits into from
Aug 25, 2023
Merged

Conversation

nileshgadgi
Copy link
Member

@github-advanced-security
Copy link

This pull request sets up GitHub code scanning for this repository. Once the scans have completed and the checks have passed, the analysis results for this pull request branch will appear on this overview. Once you merge this pull request, the 'Security' tab will show more code scanning analysis results (for example, for the default branch). Depending on your configuration and choice of analysis tool, future pull requests will be annotated with code scanning analysis results. For more information about GitHub code scanning, check out the documentation.

_examples/basic/main.tf Fixed Show fixed Hide fixed
_examples/basic/main.tf Fixed Show fixed Hide fixed
_examples/basic/main.tf Fixed Show fixed Hide fixed
_examples/basic/main.tf Fixed Show fixed Hide fixed
_examples/complete/main.tf Fixed Show fixed Hide fixed
_examples/complete/main.tf Fixed Show fixed Hide fixed
_examples/complete/main.tf Fixed Show fixed Hide fixed
_examples/complete/main.tf Fixed Show fixed Hide fixed
_examples/basic/main.tf Fixed Show fixed Hide fixed
_examples/complete/main.tf Fixed Show fixed Hide fixed
_examples/complete/main.tf Fixed Show fixed Hide fixed
Comment on lines +16 to +41
module "athena" {
source = "../../"
name = "athena"
environment = "test"
label_order = ["name", "environment"]
enabled = true
workgroup_force_destroy = true

# S3 Bucket Configuration
bucket_force_destroy = true
s3_output_path = "accessLogs/queryresults/" # The S3 bucket path used to store query results
bucket_versioning = true

# Database for Athena
databases = {
database1 = {
force_destroy = true
properties = {
custom_prop_1 = "example"
}
encryption_configuration = {
encryption_option = "SSE_KMS"
}
}
}
}

Check warning

Code scanning / defsec

S3 Bucket does not have logging enabled. Warning

Bucket does not have logging enabled
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Bucket Logging in the Athena's s3 bucket is not required because we are not using s3 for logging.

Comment on lines +16 to +41
module "athena" {
source = "../../"
name = "athena"
environment = "test"
label_order = ["name", "environment"]
enabled = true
workgroup_force_destroy = true

# S3 Bucket Configuration
bucket_force_destroy = true
s3_output_path = "accessLogs/queryresults/" # The S3 bucket path used to store query results
bucket_versioning = true

# Database for Athena
databases = {
database1 = {
force_destroy = true
properties = {
custom_prop_1 = "example"
}
encryption_configuration = {
encryption_option = "SSE_KMS"
}
}
}
}

Check warning

Code scanning / defsec

S3 Data should be versioned Warning

Bucket does not have versioning enabled
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Data version will have additional cost in s3 so didn't used it in example.

Comment on lines +24 to +31
module "s3_bucket" {
source = "clouddrove/s3/aws"
version = "1.3.0"
name = format("%s-bucket-test", local.name)
versioning = true
acl = "private"
force_destroy = true
}

Check warning

Code scanning / defsec

S3 Bucket does not have logging enabled. Warning

Bucket does not have logging enabled
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Data version in the Athena's s3 bucket is not required because we are not using s3 for logging.

Comment on lines +24 to +31
module "s3_bucket" {
source = "clouddrove/s3/aws"
version = "1.3.0"
name = format("%s-bucket-test", local.name)
versioning = true
acl = "private"
force_destroy = true
}

Check warning

Code scanning / defsec

S3 Data should be versioned Warning

Bucket does not have versioning enabled
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Data version in the Athena's s3 bucket is not required because we are not using s3 for logging.

@nileshgadgi nileshgadgi changed the title feat: Feature AWS Athena Terraform module. Feat: Feature AWS Athena Terraform module 🚀 Aug 25, 2023
Copy link
Member

@d4kverma d4kverma left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

@anmolnagpal anmolnagpal merged commit 44e3c3d into master Aug 25, 2023
11 checks passed
@anmolnagpal anmolnagpal deleted the feat/initial branch August 25, 2023 19:16
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants