Skip to content

Commit

Permalink
update provider version
Browse files Browse the repository at this point in the history
  • Loading branch information
jdongo-aneo committed Oct 29, 2024
1 parent d5d606b commit 4cc93f7
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 18 deletions.
10 changes: 5 additions & 5 deletions container-registry/aws/ecr/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,16 +23,16 @@ This module must be used with these constraints:
|------|---------|
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.0 |
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 5.4.0 |
| <a name="requirement_null"></a> [null](#requirement\_null) | ~> 3.2.1 |
| <a name="requirement_skopeo2"></a> [skopeo2](#requirement\_skopeo2) | ~> 1.1.1 |
| <a name="requirement_null"></a> [null](#requirement\_null) | >= 3.2.1 |
| <a name="requirement_skopeo2"></a> [skopeo2](#requirement\_skopeo2) | >= 1.1.1 |

## Providers

| Name | Version |
|------|---------|
| <a name="provider_aws"></a> [aws](#provider\_aws) | 5.69.0 |
| <a name="provider_null"></a> [null](#provider\_null) | 3.2.3 |
| <a name="provider_skopeo2"></a> [skopeo2](#provider\_skopeo2) | 1.1.1 |
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 5.4.0 |
| <a name="provider_null"></a> [null](#provider\_null) | >= 3.2.1 |
| <a name="provider_skopeo2"></a> [skopeo2](#provider\_skopeo2) | >= 1.1.1 |

## Modules

Expand Down
8 changes: 4 additions & 4 deletions container-registry/aws/ecr/examples/complete/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,17 +20,17 @@ terraform destroy
| Name | Version |
|------|---------|
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.0 |
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | ~> 5.69.0 |
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | ~> 5.4.0 |
| <a name="requirement_external"></a> [external](#requirement\_external) | ~> 2.3.1 |
| <a name="requirement_null"></a> [null](#requirement\_null) | ~> 3.2.1 |

## Providers

| Name | Version |
|------|---------|
| <a name="provider_aws"></a> [aws](#provider\_aws) | 5.69.0 |
| <a name="provider_external"></a> [external](#provider\_external) | 2.3.4 |
| <a name="provider_null"></a> [null](#provider\_null) | 3.2.3 |
| <a name="provider_aws"></a> [aws](#provider\_aws) | ~> 5.4.0 |
| <a name="provider_external"></a> [external](#provider\_external) | ~> 2.3.1 |
| <a name="provider_null"></a> [null](#provider\_null) | ~> 3.2.1 |

## Modules

Expand Down
2 changes: 1 addition & 1 deletion container-registry/aws/ecr/examples/complete/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ terraform {
required_providers {
aws = {
source = "hashicorp/aws"
version = "~> 5.69.0"
version = "~> 5.4.0"
}
external = {
source = "hashicorp/external"
Expand Down
8 changes: 4 additions & 4 deletions container-registry/aws/ecr/examples/simple/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,17 +20,17 @@ terraform destroy
| Name | Version |
|------|---------|
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.0 |
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | ~> 5.61.0 |
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 5.4.0 |
| <a name="requirement_external"></a> [external](#requirement\_external) | ~> 2.3.1 |
| <a name="requirement_null"></a> [null](#requirement\_null) | ~> 3.2.1 |

## Providers

| Name | Version |
|------|---------|
| <a name="provider_aws"></a> [aws](#provider\_aws) | 5.61.0 |
| <a name="provider_external"></a> [external](#provider\_external) | 2.3.4 |
| <a name="provider_null"></a> [null](#provider\_null) | 3.2.3 |
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 5.4.0 |
| <a name="provider_external"></a> [external](#provider\_external) | ~> 2.3.1 |
| <a name="provider_null"></a> [null](#provider\_null) | ~> 3.2.1 |

## Modules

Expand Down
2 changes: 1 addition & 1 deletion container-registry/aws/ecr/examples/simple/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ terraform {
required_providers {
aws = {
source = "hashicorp/aws"
version = "~> 5.61.0"
version = ">= 5.4.0"
}
external = {
source = "hashicorp/external"
Expand Down
2 changes: 1 addition & 1 deletion container-registry/aws/ecr/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ resource "skopeo2_copy" "copy_images" {
destination_image = "docker://${local.current_account}.dkr.ecr.${local.region}.amazonaws.com/${each.key}:${var.repositories[each.key].tag}"

copy_all_images = true
retries = 5
retries = 10
retry_delay = 10

depends_on = [aws_ecr_repository.ecr, null_resource.logout_public_ecr]
Expand Down
4 changes: 2 additions & 2 deletions container-registry/aws/ecr/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ terraform {
}
skopeo2 = {
source = "bsquare-corp/skopeo2"
version = "~> 1.1.1"
version = ">= 1.1.1"
}
null = {
source = "hashicorp/null"
version = "~> 3.2.1"
version = ">= 3.2.1"
}
}
}

0 comments on commit 4cc93f7

Please sign in to comment.