Skip to content

Commit

Permalink
fix(DMVP-4099): Upgraded terraform and aws provider versions
Browse files Browse the repository at this point in the history
  • Loading branch information
viktoryathegreat committed May 13, 2024
1 parent 3859701 commit e866082
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions modules/sso/modules/account-assignments/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,14 +47,14 @@ module "sso_account_assignments" {

| Name | Version |
|------|---------|
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 0.13.0 |
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 3.26.0 |
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.3.0 |
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | ~> 4.0 |

## Providers

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

## Modules

Expand Down
4 changes: 2 additions & 2 deletions modules/sso/modules/account-assignments/versions.tf
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
terraform {
required_version = ">= 0.13.0"
required_version = ">= 1.3.0"

required_providers {
aws = {
source = "hashicorp/aws"
version = ">= 3.26.0"
version = "~> 4.0"
}
}
}
6 changes: 3 additions & 3 deletions modules/sso/modules/permission-sets/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,14 +68,14 @@ resource "aws_iam_policy" "S3Access" {

| Name | Version |
|------|---------|
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 0.13.0 |
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 4.30.0 |
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.3.0 |
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | ~> 4.0 |

## Providers

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

## Modules

Expand Down
4 changes: 2 additions & 2 deletions modules/sso/modules/permission-sets/versions.tf
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
terraform {
required_version = ">= 0.13.0"
required_version = ">= 1.3.0"

required_providers {
aws = {
source = "hashicorp/aws"
version = ">= 4.30.0"
version = "~> 4.0"
}
}
}

0 comments on commit e866082

Please sign in to comment.