Skip to content

Commit c733563

Browse files
committed
fix(tf): var name
1 parent 9f074d3 commit c733563

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

stress-tests/test.tf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@ terraform {
1414
provider "null" {}
1515
provider "local" {}
1616

17-
variable "count" {
17+
variable "resource_count" {
1818
description = "How many dummy resources to create"
1919
default = 100
2020
}
2121

2222
resource "null_resource" "stress" {
23-
count = var.count
23+
count = var.resource_count
2424

2525
triggers = {
2626
always_run = timestamp()
@@ -32,7 +32,7 @@ resource "null_resource" "stress" {
3232
}
3333

3434
resource "local_file" "dummy_files" {
35-
count = var.count
35+
count = var.resource_count
3636
content = "This is test file #${count.index}"
3737
filename = "${path.module}/output/file_${count.index}.txt"
3838
}

0 commit comments

Comments
 (0)