Skip to content

Commit 4c9b7d7

Browse files
author
Chris Mazanec
authored
fix: aws provider version fix to support alternate_identifier (#13)
- autoformat of `README.md` and `examples` - `pre-commit` config fix
1 parent e8af265 commit 4c9b7d7

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
repos:
2-
- repo: git://github.com/antonbabenko/pre-commit-terraform
2+
- repo: https://github.com/antonbabenko/pre-commit-terraform
33
rev: v1.45.0
44
hooks:
55
- id: terraform_fmt

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,13 +65,13 @@ module "sso" {
6565
| Name | Version |
6666
|------|---------|
6767
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 0.12.23 |
68-
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 4.34 |
68+
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 4.40 |
6969

7070
## Providers
7171

7272
| Name | Version |
7373
|------|---------|
74-
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 4.34 |
74+
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 4.40 |
7575

7676
## Modules
7777

examples/complete/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Before this example can be used, please ensure that the following pre-requisites
2929

3030
| Name | Source | Version |
3131
|------|--------|---------|
32-
| <a name="module_sso"></a> [sso](#module\_sso) | avlcloudtechnologies/sso/aws | |
32+
| <a name="module_sso"></a> [sso](#module\_sso) | avlcloudtechnologies/sso/aws | n/a |
3333

3434
## Resources
3535

examples/simple/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Before this example can be used, please ensure that the following pre-requisites
2626

2727
| Name | Source | Version |
2828
|------|--------|---------|
29-
| <a name="module_sso"></a> [sso](#module\_sso) | avlcloudtechnologies/sso/aws | |
29+
| <a name="module_sso"></a> [sso](#module\_sso) | avlcloudtechnologies/sso/aws | n/a |
3030

3131
## Resources
3232

versions.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ terraform {
33
required_providers {
44
aws = {
55
source = "hashicorp/aws"
6-
version = ">= 4.34"
6+
version = ">= 4.40"
77
}
88
}
99
}

0 commit comments

Comments
 (0)