Skip to content

Commit 2b143df

Browse files
authored
fix(lint): updates for tflint (#159)
1 parent da0f2aa commit 2b143df

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
@@ -33,10 +33,10 @@ locals {
3333
create_cmd_bin = local.skip_download ? var.create_cmd_entrypoint : "${local.gcloud_bin_path}/${var.create_cmd_entrypoint}"
3434
destroy_cmd_bin = local.skip_download ? var.destroy_cmd_entrypoint : "${local.gcloud_bin_path}/${var.destroy_cmd_entrypoint}"
3535

36-
wait = length(null_resource.additional_components.*.triggers) + length(
37-
null_resource.gcloud_auth_service_account_key_file.*.triggers,
38-
) + length(null_resource.gcloud_auth_google_credentials.*.triggers,
39-
) + length(null_resource.run_command.*.triggers) + length(null_resource.run_destroy_command.*.triggers)
36+
wait = length(null_resource.additional_components[*].triggers) + length(
37+
null_resource.gcloud_auth_service_account_key_file[*].triggers,
38+
) + length(null_resource.gcloud_auth_google_credentials[*].triggers,
39+
) + length(null_resource.run_command[*].triggers) + length(null_resource.run_destroy_command[*].triggers)
4040

4141
prepare_cache_command = "mkdir -p ${local.cache_path}"
4242
download_gcloud_command = "curl -sL -o ${local.cache_path}/google-cloud-sdk.tar.gz ${local.gcloud_download_url}"

0 commit comments

Comments
 (0)