Skip to content

Commit

Permalink
Merge pull request #17 from clouddrove/version
Browse files Browse the repository at this point in the history
update terraform version
  • Loading branch information
Nikita Dugar authored Dec 28, 2022
2 parents c8afbe0 + 898f0a3 commit fc09bb8
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 5 deletions.
1 change: 1 addition & 0 deletions .github/workflows/terraform.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ jobs:
- name: tflint
uses: reviewdog/action-tflint@master
with:
tflint_version: v0.29.0
github_token: ${{ secrets.GITHUB }}
working_directory: ${{ matrix.directory }}
fail_on_error: 'true'
Expand Down
1 change: 0 additions & 1 deletion _example/example.tf
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

module "labels" {
source = "./../"

Expand Down
9 changes: 7 additions & 2 deletions _example/outputs.tf
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
output "id" {
value = module.labels.id
value = module.labels.*.id
description = "Disambiguated ID."
}

output "tags" {
value = module.labels.tags
value = module.labels.*.tags
description = "Normalized Tag map."
}

output "name" {
value = module.labels.*.name
description = "Normalized Tag map."
}
4 changes: 2 additions & 2 deletions _example/versions.tf
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# Terraform version
terraform {
required_version = ">= 0.14.0"
required_version = ">= 1.3.6"

required_providers {
aws = {
source = "hashicorp/aws"
version = ">= 3.1.15"
version = ">= 4.48.0"
}
}
}

0 comments on commit fc09bb8

Please sign in to comment.