diff --git a/.deepsource.toml b/.deepsource.toml index 18b001a..9fa5be7 100644 --- a/.deepsource.toml +++ b/.deepsource.toml @@ -1,4 +1,4 @@ version = 1 [[analyzers]] -name = "terraform" \ No newline at end of file +name = "terraform" diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index 7aa8ed5..57bdcfa 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -1,2 +1,2 @@ # These owners will be the default owners for everything in the repo. -* @anmolnagpal @clouddrove/approvers @clouddrove-ci \ No newline at end of file +* @anmolnagpal @clouddrove/approvers @clouddrove-ci diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 9e713a5..be0b877 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,14 +1,14 @@ repos: - repo: https://github.com/gruntwork-io/pre-commit - rev: v0.1.12 # Get the latest from: https://github.com/gruntwork-io/pre-commit/releases + rev: v0.1.23 # Get the latest from: https://github.com/gruntwork-io/pre-commit/releases hooks: - id: terraform-fmt - id: shellcheck - id: tflint - - repo: git://github.com/pre-commit/pre-commit-hooks - rev: v4.0.1 # Use the ref you want to point at + - repo: https://github.com/pre-commit/pre-commit-hooks + rev: v5.0.0 # Use the ref you want to point at hooks: - id: end-of-file-fixer - id: trailing-whitespace diff --git a/README.md b/README.md index dbdceec..e7c76ab 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ Terraform AWS Global Accelerator -

+

Terraform module to create Global Accelerator resource on AWS.

@@ -41,7 +41,7 @@
-We eat, drink, sleep and most importantly love **DevOps**. We are working towards strategies for standardizing architecture while ensuring security for the infrastructure. We are strong believer of the philosophy Bigger problems are always solved by breaking them into smaller manageable problems. Resonating with microservices architecture, it is considered best-practice to run database, cluster, storage in smaller connected yet manageable pieces within the infrastructure. +We eat, drink, sleep and most importantly love **DevOps**. We are working towards strategies for standardizing architecture while ensuring security for the infrastructure. We are strong believer of the philosophy Bigger problems are always solved by breaking them into smaller manageable problems. Resonating with microservices architecture, it is considered best-practice to run database, cluster, storage in smaller connected yet manageable pieces within the infrastructure. This module is basically combination of [Terraform open source](https://www.terraform.io/) and includes automatation tests and examples. It also helps to create and improve your infrastructure with minimalistic code instead of maintaining the whole infrastructure code yourself. @@ -52,7 +52,7 @@ We have [*fifty plus terraform modules*][terraform_modules]. A few of them are c ## Prerequisites -This module has a few dependencies: +This module has a few dependencies: - [Terraform 1.x.x](https://learn.hashicorp.com/terraform/getting-started/install.html) - [Go](https://golang.org/doc/install) @@ -166,7 +166,7 @@ Here is an example of how you can use this module in your inventory structure: ## Testing -In this module testing is performed with [terratest](https://github.com/gruntwork-io/terratest) and it creates a small piece of infrastructure, matches the output like ARN, ID and Tags name etc and destroy infrastructure in your AWS account. This testing is written in GO, so you need a [GO environment](https://golang.org/doc/install) in your system. +In this module testing is performed with [terratest](https://github.com/gruntwork-io/terratest) and it creates a small piece of infrastructure, matches the output like ARN, ID and Tags name etc and destroy infrastructure in your AWS account. This testing is written in GO, so you need a [GO environment](https://golang.org/doc/install) in your system. You need to run the following command in the testing folder: ```hcl @@ -175,7 +175,7 @@ You need to run the following command in the testing folder: -## Feedback +## Feedback If you come accross a bug or have any feedback, please log it in our [issue tracker](https://github.com/clouddrove/terraform-aws-global-accelerator/issues), or feel free to drop us an email at [hello@clouddrove.com](mailto:hello@clouddrove.com). If you have found it worth your time, go ahead and give us a ★ on [our GitHub](https://github.com/clouddrove/terraform-aws-global-accelerator)! diff --git a/_example/outputs.tf b/_example/outputs.tf index 2900658..5e767f9 100644 --- a/_example/outputs.tf +++ b/_example/outputs.tf @@ -16,4 +16,4 @@ output "listeners" { output "endpoint_groups" { value = module.global_accelerator.endpoint_groups description = "Map of endpoints created and their associated attributes" -} \ No newline at end of file +} diff --git a/outputs.tf b/outputs.tf index c3326c0..717a761 100644 --- a/outputs.tf +++ b/outputs.tf @@ -16,4 +16,4 @@ output "listeners" { output "endpoint_groups" { value = aws_globalaccelerator_endpoint_group.main description = "Map of endpoints created and their specified attributes" -} \ No newline at end of file +} diff --git a/versions.tf b/versions.tf index 9317499..c3cde87 100644 --- a/versions.tf +++ b/versions.tf @@ -8,4 +8,4 @@ terraform { version = ">= 5.1.0" } } -} \ No newline at end of file +}