Skip to content

Commit 648a1ff

Browse files
committed
Rename docs files
Signed-off-by: Diogenes Fernandes <[email protected]>
1 parent 1e33a6e commit 648a1ff

20 files changed

+36
-36
lines changed
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/diofeher/tflint-ruleset-opentofu/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/opentofu_comment_syntax.md
2222
```
2323

2424
## Why
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/diofeher/tflint-ruleset-opentofu/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/opentofu_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/diofeher/tflint-ruleset-opentofu/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/opentofu_deprecated_index.md
4545
```
4646

4747
## Why

docs/rules/terraform_deprecated_interpolation.md renamed to docs/rules/opentofu_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/diofeher/tflint-ruleset-opentofu/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/opentofu_deprecated_interpolation.md
2929
3030
```
3131

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/diofeher/tflint-ruleset-opentofu/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/opentofu_deprecated_lookup.md
2626
```
2727

2828
## Why

docs/rules/terraform_documented_outputs.md renamed to docs/rules/opentofu_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/diofeher/tflint-ruleset-opentofu/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/opentofu_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/diofeher/tflint-ruleset-opentofu/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/opentofu_documented_outputs.md
4040
4141
```
4242

docs/rules/terraform_documented_variables.md renamed to docs/rules/opentofu_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/diofeher/tflint-ruleset-opentofu/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/opentofu_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/diofeher/tflint-ruleset-opentofu/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/opentofu_documented_variables.md
4040
4141
```
4242

docs/rules/terraform_empty_list_equality.md renamed to docs/rules/opentofu_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/diofeher/tflint-ruleset-opentofu/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/opentofu_empty_list_equality.md
2929
3030
```
3131

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/diofeher/tflint-ruleset-opentofu/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/opentofu_json_syntax.md
2121
```
2222

2323
## Why

docs/rules/terraform_map_duplicate_keys.md renamed to docs/rules/opentofu_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/diofeher/tflint-ruleset-opentofu/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/opentofu_map_duplicate_keys.md
2929
```
3030

3131
## Why

docs/rules/terraform_module_pinned_source.md renamed to docs/rules/opentofu_module_pinned_source.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -55,21 +55,21 @@ Warning: Module source "git://hashicorp.com/consul.git" is not pinned (terraform
5555
on template.tf line 2:
5656
2: source = "git://hashicorp.com/consul.git"
5757
58-
Reference: https://github.com/diofeher/tflint-ruleset-opentofu/blob/v0.1.0/docs/rules/terraform_module_pinned_source.md
58+
Reference: https://github.com/diofeher/tflint-ruleset-opentofu/blob/v0.1.0/docs/rules/opentofu_module_pinned_source.md
5959
6060
Warning: Module source "git://hashicorp.com/consul.git?ref=master" uses a default branch as ref (master) (terraform_module_pinned_source)
6161
6262
on template.tf line 6:
6363
6: source = "git://hashicorp.com/consul.git?ref=master"
6464
65-
Reference: https://github.com/diofeher/tflint-ruleset-opentofu/blob/v0.1.0/docs/rules/terraform_module_pinned_source.md
65+
Reference: https://github.com/diofeher/tflint-ruleset-opentofu/blob/v0.1.0/docs/rules/opentofu_module_pinned_source.md
6666
6767
Warning: Module source "hg::http://hashicorp.com/consul.hg?rev=default" uses a default branch as rev (default) (terraform_module_pinned_source)
6868
6969
on template.tf line 10:
7070
10: source = "hg::http://hashicorp.com/consul.hg?rev=default"
7171
72-
Reference: https://github.com/diofeher/tflint-ruleset-opentofu/blob/v0.1.0/docs/rules/terraform_module_pinned_source.md
72+
Reference: https://github.com/diofeher/tflint-ruleset-opentofu/blob/v0.1.0/docs/rules/opentofu_module_pinned_source.md
7373
7474
```
7575

@@ -100,14 +100,14 @@ Warning: Module source "git://hashicorp.com/consul.git" is not pinned (terraform
100100
on template.tf line 2:
101101
2: source = "git://hashicorp.com/consul.git"
102102
103-
Reference: https://github.com/diofeher/tflint-ruleset-opentofu/blob/v0.1.0/docs/rules/terraform_module_pinned_source.md
103+
Reference: https://github.com/diofeher/tflint-ruleset-opentofu/blob/v0.1.0/docs/rules/opentofu_module_pinned_source.md
104104
105105
Warning: Module source "git://hashicorp.com/consul.git?ref=feature" uses a ref which is not a semantic version string (terraform_module_pinned_source)
106106
107107
on template.tf line 6:
108108
6: source = "git://hashicorp.com/consul.git?ref=feature"
109109
110-
Reference: https://github.com/diofeher/tflint-ruleset-opentofu/blob/v0.1.0/docs/rules/terraform_module_pinned_source.md
110+
Reference: https://github.com/diofeher/tflint-ruleset-opentofu/blob/v0.1.0/docs/rules/opentofu_module_pinned_source.md
111111
112112
```
113113

0 commit comments

Comments
 (0)