Skip to content

Commit

Permalink
Issue: Update semantic versioning for aws provider (#65)
Browse files Browse the repository at this point in the history
  • Loading branch information
bachu20 authored Jul 2, 2024
1 parent fa71b84 commit 4994442
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,9 +102,9 @@ Please read our [Contributing Code of Conduct](CONTRIBUTING.md) to get started.

| Name | Version |
|------|---------|
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | ~> 1.1 |
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | ~> 5.0 |
| <a name="requirement_random"></a> [random](#requirement\_random) | ~> 3.6 |
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.1 |
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 5.0 |
| <a name="requirement_random"></a> [random](#requirement\_random) | >= 3.6 |
## Inputs

| Name | Description | Type | Default | Required |
Expand Down
6 changes: 3 additions & 3 deletions terraform.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ terraform {
required_providers {
aws = {
source = "hashicorp/aws"
version = "~> 5.0"
version = ">= 5.0"
# For new & existing cloudtrail with resources in single aws account, set the log_bucket alias to default aws provider.
# For existing cloudtrail with resources in different aws accounts, create an aws provider for the log_bucket account & pass it's alias.
# See examples for reference.
Expand All @@ -11,8 +11,8 @@ terraform {

random = {
source = "hashicorp/random"
version = "~> 3.6"
version = ">= 3.6"
}
}
required_version = "~> 1.1"
required_version = ">= 1.1"
}

0 comments on commit 4994442

Please sign in to comment.