Skip to content

Commit

Permalink
Remove provider block (#28)
Browse files Browse the repository at this point in the history
  • Loading branch information
franklinpashok authored Jul 4, 2024
1 parent a8d3102 commit 6a54c2b
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 13 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@

| Name | Version |
|------|---------|
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.3 |
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 4.50 |
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.9 |
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 5.0.0 |

## Providers

| Name | Version |
|------|---------|
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 4.50 |
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 5.0.0 |

## Modules

Expand Down
4 changes: 0 additions & 4 deletions acm.tf
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,6 @@ module "acm" {
source = "terraform-aws-modules/acm/aws"
version = "~> 4.3.0"

providers = {
aws = aws.us-east-1
}

create_certificate = var.create_certificate
create_route53_records = false
wait_for_validation = false
Expand Down
4 changes: 0 additions & 4 deletions providers.tf

This file was deleted.

4 changes: 2 additions & 2 deletions versions.tf
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
terraform {
required_version = ">= 1.3"
required_version = ">= 1.9"
required_providers {
aws = {
source = "hashicorp/aws"
version = ">= 4.50"
version = ">= 5.0.0"

configuration_aliases = [
aws.us-east-1,
Expand Down

0 comments on commit 6a54c2b

Please sign in to comment.