Skip to content

Commit

Permalink
AWS provider Upgrade (#23)
Browse files Browse the repository at this point in the history
  • Loading branch information
Mohammed-afk91 authored Jul 17, 2023
1 parent 5cf5406 commit d3f6c92
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ repos:
args: ['--allow-missing-credentials']
- id: trailing-whitespace
- repo: https://github.com/antonbabenko/pre-commit-terraform
rev: v1.77.3
rev: v1.81.0
hooks:
- id: terraform_fmt
- id: terraform_docs
Expand Down
11 changes: 8 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,12 @@ All notable changes to this project will be documented in this file.
<a name="unreleased"></a>
## [Unreleased]

- Upgrade ami to Amazon Linux 2023
- Add new 'tag_specifications' feature


<a name="2.4.3"></a>
## [2.4.3] - 2023-04-27

- Add 'tag_specifications' feature ([#22](https://github.com/umotif-public/terraform-aws-bastion/issues/22))


<a name="2.4.2"></a>
Expand Down Expand Up @@ -145,7 +149,8 @@ All notable changes to this project will be documented in this file.
- Initial commit


[Unreleased]: https://github.com/umotif-public/terraform-aws-bastion/compare/2.4.2...HEAD
[Unreleased]: https://github.com/umotif-public/terraform-aws-bastion/compare/2.4.3...HEAD
[2.4.3]: https://github.com/umotif-public/terraform-aws-bastion/compare/2.4.2...2.4.3
[2.4.2]: https://github.com/umotif-public/terraform-aws-bastion/compare/2.4.1...2.4.2
[2.4.1]: https://github.com/umotif-public/terraform-aws-bastion/compare/2.4.0...2.4.1
[2.4.0]: https://github.com/umotif-public/terraform-aws-bastion/compare/2.3.0...2.4.0
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,13 +51,13 @@ Module managed by [uMotif](https://github.com/umotif-public).
| Name | Version |
|------|---------|
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.0.11 |
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 4.0.0, < 5.0.0 |
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 4.0.0 |

## Providers

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

## Modules

Expand Down
5 changes: 4 additions & 1 deletion examples/core/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ terraform {
required_version = ">= 1.0.11"

required_providers {
aws = ">= 4.0.0, < 5.0.0"
aws = {
source = "hashicorp/aws"
version = "~> 5.0.0"
}
}
}
7 changes: 5 additions & 2 deletions versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ terraform {
required_version = ">= 1.0.11"

required_providers {
aws = ">= 4.0.0, < 5.0.0"
aws = {
source = "hashicorp/aws"
version = ">= 4.0.0"
}
}
}
}

0 comments on commit d3f6c92

Please sign in to comment.