Skip to content

Commit 1e33a6e

Browse files
committed
Update reference docs
Signed-off-by: Diogenes Fernandes <[email protected]>
1 parent 9e2d382 commit 1e33a6e

21 files changed

+40
-40
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# TFLint Ruleset for OpenTofu Language
2-
[![Build Status](https://github.com/terraform-linters/tflint-ruleset-terraform/actions/workflows/build.yml/badge.svg?branch=main)](https://github.com/terraform-linters/tflint-ruleset-terraform/actions)
3-
[![GitHub release](https://img.shields.io/github/release/terraform-linters/tflint-ruleset-terraform.svg)](https://github.com/terraform-linters/tflint-ruleset-terraform/releases/latest)
2+
[![Build Status](https://github.com/diofeher/tflint-ruleset-opentofu/actions/workflows/build.yml/badge.svg?branch=main)](https://github.com/diofeher/tflint-ruleset-opentofu/actions)
3+
[![GitHub release](https://img.shields.io/github/release/terraform-linters/tflint-ruleset-terraform.svg)](https://github.com/diofeher/tflint-ruleset-opentofu/releases/latest)
44
[![License: MPL 2.0](https://img.shields.io/badge/License-MPL%202.0-blue.svg)](LICENSE)
55

66
TFLint ruleset plugin for OpenTofu Language

docs/rules/terraform_comment_syntax.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Warning: Single line comments should begin with # (terraform_comment_syntax)
1818
on main.tf line 2:
1919
2: // Bad
2020
21-
Reference: https://github.com/terraform-linters/tflint-ruleset-terraform/blob/v0.1.0/docs/rules/terraform_comment_syntax.md
21+
Reference: https://github.com/diofeher/tflint-ruleset-opentofu/blob/v0.1.0/docs/rules/terraform_comment_syntax.md
2222
```
2323

2424
## Why

docs/rules/terraform_deprecated_index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Warning: List items should be accessed using square brackets (terraform_deprecat
2222
on example.tf line 3:
2323
3: value = list.0
2424
25-
Reference: https://github.com/terraform-linters/tflint-ruleset-terraform/blob/v0.1.0/docs/rules/terraform_deprecated_index.md
25+
Reference: https://github.com/diofeher/tflint-ruleset-opentofu/blob/v0.1.0/docs/rules/terraform_deprecated_index.md
2626
```
2727

2828
```hcl
@@ -41,7 +41,7 @@ Warning: List items should be accessed using square brackets (terraform_deprecat
4141
on example.tf line 3:
4242
3: value = list.*.a
4343
44-
Reference: https://github.com/terraform-linters/tflint-ruleset-terraform/blob/v0.1.0/docs/rules/terraform_deprecated_index.md
44+
Reference: https://github.com/diofeher/tflint-ruleset-opentofu/blob/v0.1.0/docs/rules/terraform_deprecated_index.md
4545
```
4646

4747
## Why

docs/rules/terraform_deprecated_interpolation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Warning: Interpolation-only expressions are deprecated in Terraform v0.12.14 (te
2525
on example.tf line 2:
2626
2: instance_type = "${var.type}"
2727
28-
Reference: https://github.com/terraform-linters/tflint-ruleset-terraform/blob/v0.1.0/docs/rules/terraform_deprecated_interpolation.md
28+
Reference: https://github.com/diofeher/tflint-ruleset-opentofu/blob/v0.1.0/docs/rules/terraform_deprecated_interpolation.md
2929
3030
```
3131

docs/rules/terraform_deprecated_lookup.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Warning: [Fixable] Lookup with 2 arguments is deprecated (terraform_deprecated_l
2222
on main.tf line 3:
2323
3: value = lookup(local.map, "a")
2424
25-
Reference: https://github.com/terraform-linters/tflint-ruleset-terraform/blob/v0.5.0/docs/rules/terraform_deprecated_lookup.md
25+
Reference: https://github.com/diofeher/tflint-ruleset-opentofu/blob/v0.5.0/docs/rules/terraform_deprecated_lookup.md
2626
```
2727

2828
## Why

docs/rules/terraform_documented_outputs.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,14 +29,14 @@ Notice: `no_description` output has no description (terraform_documented_outputs
2929
on template.tf line 1:
3030
1: output "no_description" {
3131
32-
Reference: https://github.com/terraform-linters/tflint-ruleset-terraform/blob/v0.1.0/docs/rules/terraform_documented_outputs.md
32+
Reference: https://github.com/diofeher/tflint-ruleset-opentofu/blob/v0.1.0/docs/rules/terraform_documented_outputs.md
3333
3434
Notice: `empty_description` output has no description (terraform_documented_outputs)
3535
3636
on template.tf line 5:
3737
5: output "empty_description" {
3838
39-
Reference: https://github.com/terraform-linters/tflint-ruleset-terraform/blob/v0.1.0/docs/rules/terraform_documented_outputs.md
39+
Reference: https://github.com/diofeher/tflint-ruleset-opentofu/blob/v0.1.0/docs/rules/terraform_documented_outputs.md
4040
4141
```
4242

docs/rules/terraform_documented_variables.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,14 +29,14 @@ Notice: `no_description` variable has no description (terraform_documented_varia
2929
on template.tf line 1:
3030
1: variable "no_description" {
3131
32-
Reference: https://github.com/terraform-linters/tflint-ruleset-terraform/blob/v0.1.0/docs/rules/terraform_documented_variables.md
32+
Reference: https://github.com/diofeher/tflint-ruleset-opentofu/blob/v0.1.0/docs/rules/terraform_documented_variables.md
3333
3434
Notice: `empty_description` variable has no description (terraform_documented_variables)
3535
3636
on template.tf line 5:
3737
5: variable "empty_description" {
3838
39-
Reference: https://github.com/terraform-linters/tflint-ruleset-terraform/blob/v0.1.0/docs/rules/terraform_documented_variables.md
39+
Reference: https://github.com/diofeher/tflint-ruleset-opentofu/blob/v0.1.0/docs/rules/terraform_documented_variables.md
4040
4141
```
4242

docs/rules/terraform_empty_list_equality.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Warning: Comparing a collection with an empty list is invalid. To detect an empt
2525
on test.tf line 5:
2626
5: count = var.my_list == [] ? 0 : 1
2727
28-
Reference: https://github.com/terraform-linters/tflint-ruleset-terraform/blob/v0.1.0/docs/rules/terraform_empty_list_equality.md
28+
Reference: https://github.com/diofeher/tflint-ruleset-opentofu/blob/v0.1.0/docs/rules/terraform_empty_list_equality.md
2929
3030
```
3131

docs/rules/terraform_json_syntax.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Warning: JSON configuration uses array syntax at root, expected object (terrafor
1717
on main.tf.json line 1:
1818
1: [{"resource": {"aws_instance": {"example": {"ami": "ami-12345678"}}}}]
1919
20-
Reference: https://github.com/terraform-linters/tflint-ruleset-terraform/blob/v0.1.0/docs/rules/terraform_json_syntax.md
20+
Reference: https://github.com/diofeher/tflint-ruleset-opentofu/blob/v0.1.0/docs/rules/terraform_json_syntax.md
2121
```
2222

2323
## Why

docs/rules/terraform_map_duplicate_keys.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Warning: Duplicate key: "bar", first defined at main.tf:4,5-8 (terraform_map_dup
2525
on main.tf line 5:
2626
5: bar = 3 // duplicated key
2727
28-
Reference: https://github.com/terraform-linters/tflint-ruleset-terraform/blob/v0.9.0/docs/rules/terraform_map_duplicate_keys.md
28+
Reference: https://github.com/diofeher/tflint-ruleset-opentofu/blob/v0.9.0/docs/rules/terraform_map_duplicate_keys.md
2929
```
3030

3131
## Why

0 commit comments

Comments
 (0)