Skip to content

Commit bc76e47

Browse files
committed
Fix long outputs test
1 parent ae7ccbc commit bc76e47

File tree

1 file changed

+11
-2
lines changed
  • tests/workflows/test-apply/long_outputs

1 file changed

+11
-2
lines changed
Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,17 @@
11
variable "input" {
22
type = string
3-
default = "This is my long string"
3+
default = "This is my long string."
4+
}
5+
6+
resource "random_string" "s" {
7+
length = 200
8+
special = false
49
}
510

611
output "output" {
7-
value = join('\n', [for i in range(0, 5000): var.input])
12+
value = join("\n", [for i in range(0, 100): var.input])
813
}
14+
15+
output "unknown" {
16+
value = join("\n", [for i in range(0, 1024): random_string.s.result])
17+
}

0 commit comments

Comments
 (0)