ize gen completion

Generate completion script

Synopsis

To load completions:

Bash:

  $ source <(  completion bash)

  # To load completions for each session, execute once:
  # Linux:
  $   completion bash > /etc/bash_completion.d/ 
  # macOS:
  $   completion bash > /usr/local/etc/bash_completion.d/ 

Zsh:

  # If shell completion is not already enabled in your environment,
  # you will need to enable it.  You can execute the following once:

  $ echo "autoload -U compinit; compinit" >> ~/.zshrc

  # To load completions for each session, execute once:
  $   completion zsh > "${fpath[1]}/_ "

  # You will need to start a new shell for this setup to take effect.

fish:

  $   completion fish | source

  # To load completions for each session, execute once:
  $   completion fish > ~/.config/fish/completions/ .fish

PowerShell:

  PS>   completion powershell | Out-String | Invoke-Expression

  # To load completions for every new session, run:
  PS>   completion powershell >  .ps1
  # and source this file from your PowerShell profile.
ize gen completion [bash|zsh|fish|powershell]

Options

  -h, --help   help for completion

Options inherited from parent commands

  -p, --aws-profile string         (required) set AWS profile (overrides value in ize.toml and IZE_AWS_PROFILE / AWS_PROFILE if any of them are set)
  -r, --aws-region string          (required) set AWS region (overrides value in ize.toml and IZE_AWS_REGION / AWS_REGION if any of them are set)
  -c, --config-file string         set config file name
  -e, --env string                 (required) set environment name (overrides value set in IZE_ENV / ENV if any of them are set)
  -l, --log-level string           set log level. Possible levels: info, debug, trace, panic, warn, error, fatal(default)
  -n, --namespace string           (required) set namespace (overrides value in ize.toml and IZE_NAMESPACE / NAMESPACE if any of them are set)
      --plain-text-output          enable plain text output
      --prefer-runtime string      set prefer runtime (native, docker or docker-arm64) (default "native")
      --terraform-version string   set terraform-version

SEE ALSO

Auto generated by spf13/cobra on 28-Jan-2025