Skip to content

Commit

Permalink
Merge pull request #5 from kabisa/upgrade-provider-version
Browse files Browse the repository at this point in the history
upgrade provider version
  • Loading branch information
Glaaj authored Jul 20, 2022
2 parents e55b910 + 7717445 commit 70382ba
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 8 deletions.
6 changes: 3 additions & 3 deletions .terraform.lock.hcl

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ Modules are generated with this tool: https://github.com/kabisa/datadog-terrafor
# Example Usage

```terraform
# tflint-ignore: terraform_module_version
module "aws_eu_west_1" {
source = "kabisa/aws-services/datadog"
Expand Down Expand Up @@ -58,6 +59,7 @@ module "aws_eu_west_1" {
]
name_suffix = each.key
}
```

Monitors:
Expand Down
3 changes: 2 additions & 1 deletion examples/example.tf
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# tflint-ignore: terraform_module_version
module "aws_eu_west_1" {
source = "kabisa/aws-services/datadog"

Expand Down Expand Up @@ -34,4 +35,4 @@ module "aws_eu_west_1" {
"service"
]
name_suffix = each.key
}
}
4 changes: 2 additions & 2 deletions main.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
module "aws_services" {
source = "[email protected]:kabisa/terraform-datadog-service-check-monitor.git?ref=1.4.0"
source = "kabisa/service-check-monitor/datadog"
version = "2.0.0"

name = "Service Status"
metric_name = "aws.status"
Expand Down Expand Up @@ -33,4 +34,3 @@ module "aws_services" {
name_prefix = var.name_prefix
name_suffix = var.name_suffix
}

2 changes: 1 addition & 1 deletion provider.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ terraform {
required_providers {
datadog = {
source = "DataDog/datadog"
version = "~> 3.4"
version = "~> 3.12"
}
}
}
2 changes: 1 addition & 1 deletion variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -106,4 +106,4 @@ variable "name_prefix" {
variable "name_suffix" {
type = string
default = ""
}
}

0 comments on commit 70382ba

Please sign in to comment.