Skip to content

Commit

Permalink
feat: upgrade aws provider, test examples (#15)
Browse files Browse the repository at this point in the history
* feat: upgrade aws provider, test examples

* chore: Update terraform docs

---------

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
Jlkan and github-actions[bot] authored Sep 9, 2024
1 parent ed936ef commit 4e6b817
Show file tree
Hide file tree
Showing 88 changed files with 448 additions and 396 deletions.
31 changes: 17 additions & 14 deletions examples/acm/external-dns-provider/.terraform.lock.hcl

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions examples/acm/external-dns-provider/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
| Name | Version |
|------|---------|
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | ~> 1.0 |
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | ~> 4.0 |
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | ~> 5.0 |

## Modules

| Name | Source | Version |
|------|--------|---------|
| <a name="module_cert"></a> [cert](#module\_cert) | ../../modules/acm-wildcard | n/a |
| <a name="module_cert"></a> [cert](#module\_cert) | ../../../modules/acm-wildcard | n/a |
| <a name="module_info"></a> [info](#module\_info) | Selleo/context/null | 0.3.0 |

## Outputs
Expand Down
2 changes: 1 addition & 1 deletion examples/acm/external-dns-provider/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ module "info" {
}

module "cert" {
source = "../../modules/acm-wildcard"
source = "../../../modules/acm-wildcard"

domain = "hetzner.example.selleo.com"
context = module.info.context
Expand Down
2 changes: 1 addition & 1 deletion examples/acm/external-dns-provider/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ terraform {
required_providers {
aws = {
source = "hashicorp/aws"
version = "~> 4.0"
version = "~> 5.0"
}
}
}
Expand Down
31 changes: 17 additions & 14 deletions examples/acm/route53/.terraform.lock.hcl

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions examples/acm/route53/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,19 @@
| Name | Version |
|------|---------|
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | ~> 1.0 |
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | ~> 4.0 |
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | ~> 5.0 |

## Providers

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

## Modules

| Name | Source | Version |
|------|--------|---------|
| <a name="module_cert"></a> [cert](#module\_cert) | ../../modules/acm-wildcard | n/a |
| <a name="module_cert"></a> [cert](#module\_cert) | ../../../modules/acm-wildcard | n/a |
| <a name="module_info"></a> [info](#module\_info) | Selleo/context/null | 0.3.0 |

## Resources
Expand Down
2 changes: 1 addition & 1 deletion examples/acm/route53/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ resource "aws_route53_zone" "example" {
}

module "cert" {
source = "../../modules/acm-wildcard"
source = "../../../modules/acm-wildcard"

domain = aws_route53_zone.example.name
context = module.info.context
Expand Down
2 changes: 1 addition & 1 deletion examples/acm/route53/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ terraform {
required_providers {
aws = {
source = "hashicorp/aws"
version = "~> 4.0"
version = "~> 5.0"
}
}
}
Expand Down
5 changes: 4 additions & 1 deletion examples/cloudfront-app/.terraform.lock.hcl

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

32 changes: 17 additions & 15 deletions examples/ecr-repository/.terraform.lock.hcl

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion examples/ecr-repository/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

| Name | Version |
|------|---------|
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | ~> 4.0 |
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | ~> 5.0 |

## Modules

Expand Down
2 changes: 1 addition & 1 deletion examples/ecr-repository/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ terraform {
required_providers {
aws = {
source = "hashicorp/aws"
version = "~> 4.0"
version = "~> 5.0"
}
}
}
Expand Down
34 changes: 17 additions & 17 deletions examples/ecs-app/.terraform.lock.hcl

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 5 additions & 4 deletions examples/ecs-app/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,23 +4,24 @@
| Name | Version |
|------|---------|
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | ~> 1.0 |
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | ~> 4.0 |
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | ~> 5.0 |

## Providers

| Name | Version |
|------|---------|
| <a name="provider_aws"></a> [aws](#provider\_aws) | 4.67.0 |
| <a name="provider_aws"></a> [aws](#provider\_aws) | 5.64.0 |
| <a name="provider_random"></a> [random](#provider\_random) | 3.6.2 |

## Modules

| Name | Source | Version |
|------|--------|---------|
| <a name="module_cluster"></a> [cluster](#module\_cluster) | ../../modules/ecs-cluster | n/a |
| <a name="module_lb"></a> [lb](#module\_lb) | Selleo/backend/aws//modules/load-balancer | 0.23.0 |
| <a name="module_lb"></a> [lb](#module\_lb) | ../../modules/lb/alb | n/a |
| <a name="module_public_subnets"></a> [public\_subnets](#module\_public\_subnets) | ../../modules/vpc-public-subnet | n/a |
| <a name="module_service"></a> [service](#module\_service) | ../../modules/ecs-service | n/a |
| <a name="module_vpc"></a> [vpc](#module\_vpc) | terraform-aws-modules/vpc/aws | ~> 4.0 |
| <a name="module_vpc"></a> [vpc](#module\_vpc) | ../../modules/vpc | n/a |

## Resources

Expand Down
Loading

0 comments on commit 4e6b817

Please sign in to comment.