Skip to content

Commit 87f0a84

Browse files
committed
first linting pass
1 parent b39c2cd commit 87f0a84

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

main.tf

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -167,12 +167,12 @@ resource "aws_instance" "this" {
167167
}
168168

169169
dynamic "instance_market_options" {
170-
for_each = length(var.instance_market_options) > 0 ? [var.instance_market_options] : []
170+
for_each = length(var.instance_market_options) > 0 ? [var.instance_market_options] : []
171171

172-
content {
173-
market_type = try(instance_market_options.value.market_type, null)
172+
content {
173+
market_type = try(instance_market_options.value.market_type, null)
174+
}
174175
}
175-
}
176176

177177
enclave_options {
178178
enabled = var.enclave_options_enabled

0 commit comments

Comments
 (0)