Skip to content

Commit

Permalink
Merge pull request #8 from rhythmictech/unpin
Browse files Browse the repository at this point in the history
Unpin
  • Loading branch information
cdaniluk authored Aug 25, 2023
2 parents b5b670f + 5a9d82f commit c44d5a3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,8 @@ resource "aws_cloudwatch_log_subscription_filter" "rds_log_forwarding" {
| Name | Version |
|------|---------|
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | ~> 1.1 |
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | ~> 4.10 |
| <a name="requirement_datadog"></a> [datadog](#requirement\_datadog) | ~>3.11 |
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 4.10 |
| <a name="requirement_datadog"></a> [datadog](#requirement\_datadog) | >= 3.11 |

## Providers

Expand Down
4 changes: 2 additions & 2 deletions versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ terraform {
required_providers {
aws = {
source = "hashicorp/aws"
version = "~> 4.10"
version = ">= 4.10"
}

datadog = {
source = "datadog/datadog"
version = "~>3.11"
version = ">= 3.11"
}
}
}

0 comments on commit c44d5a3

Please sign in to comment.