Skip to content

Commit

Permalink
terraform fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
yashbhutwala committed Apr 30, 2021
1 parent f6dd8f3 commit a3a3d16
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/kubectl-wrapper/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ module "gcloud_kubectl" {
service_account_key_file = var.service_account_key_file

create_cmd_entrypoint = "${path.module}/scripts/kubectl_wrapper.sh"
create_cmd_body = var.impersonate_service_account == "" ? "${local.base_cmd} ${var.kubectl_create_command}": "${local.base_cmd} ${var.impersonate_service_account} ${var.kubectl_create_command}"
create_cmd_body = var.impersonate_service_account == "" ? "${local.base_cmd} ${var.kubectl_create_command}" : "${local.base_cmd} ${var.impersonate_service_account} ${var.kubectl_create_command}"
create_cmd_triggers = var.create_cmd_triggers
destroy_cmd_entrypoint = "${path.module}/scripts/kubectl_wrapper.sh"
destroy_cmd_body = var.impersonate_service_account == "" ? "${local.base_cmd} ${var.kubectl_destroy_command}": "${local.base_cmd} ${var.impersonate_service_account} ${var.kubectl_destroy_command}"
destroy_cmd_body = var.impersonate_service_account == "" ? "${local.base_cmd} ${var.kubectl_destroy_command}" : "${local.base_cmd} ${var.impersonate_service_account} ${var.kubectl_destroy_command}"
}

0 comments on commit a3a3d16

Please sign in to comment.