This repository has been archived by the owner on Jul 25, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Tested for 5.x compatibility and added a versions file for the example (
#2) * Upgraded to 5.x and added a versions file for the example * Ran the pre-commit commands and refactored versions file
- Loading branch information
1 parent
d70b852
commit da9182f
Showing
6 changed files
with
43 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Change Log | ||
|
||
All notable changes to this project will be documented in this file. | ||
|
||
<a name="unreleased"></a> | ||
## [Unreleased] | ||
|
||
- Upgraded to 5.x and added a versions file for the example | ||
|
||
|
||
<a name="1.0.0"></a> | ||
## 1.0.0 - 2021-07-05 | ||
|
||
- SQS- Full module configuration ([#1](https://github.com/umotif-public/terraform-aws-sqs/issues/1)) | ||
- Initial commit | ||
|
||
|
||
[Unreleased]: https://github.com/umotif-public/terraform-aws-sqs/compare/1.0.0...HEAD |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,3 @@ | ||
provider "aws" { | ||
region = "eu-west-1" | ||
} | ||
|
||
##### | ||
# Main SQS queue | ||
##### | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
terraform { | ||
required_version = "1.0.11" | ||
|
||
required_providers { | ||
aws = { | ||
source = "hashicorp/aws" | ||
version = "~> 5" | ||
} | ||
} | ||
} | ||
|
||
provider "aws" { | ||
region = "eu-west-1" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,10 @@ | ||
terraform { | ||
required_version = ">= 1.0.0" | ||
required_version = ">= 1.0.11" | ||
|
||
required_providers { | ||
aws = ">= 3.46" | ||
aws = { | ||
source = "hashicorp/aws" | ||
version = ">= 3.46.0" | ||
} | ||
} | ||
} |