-1

Trying to disable ssl_validation in Google Cloud Shell (Command Tool). By this command:

bq --disable_ssl_validation=[True]

give me

FATAL Flags parsing error: flag --disable_ssl_validation=[True]: ('Non-boolean argument to boolean flag', '[True]')

How to do it correctly?

Dmitry Korpachev
  • 77
  • 1
  • 2
  • 5

1 Answers1

0

Use the --disable_ssl_validation global flag.

Look at the BigQuery command line official documentation for how to use it:

bq --global_flag [ARGUMENT] bq_command --command-specific_flag [ARGUMENT]

llompalles
  • 3,072
  • 11
  • 20