diagrid appid create
Create App ID
Description
Create App ID in a project
diagrid appid create <appid> [flags]
Examples
  # Create App ID without outbound connectivity
  diagrid appid create my-appid
  
  # Create App ID with outbound connectivity in a specific project
  diagrid appid create my-appid --project my-project --app-endpoint https://myapp.myorg.com/ --app-token xxxxxxxx
  # Create App ID with outbound connectivity in a specific project and a custom health check
  diagrid appid create my-appid --app-endpoint https://myendpoint.io --app-protocol http --enable-app-health-check=true --app-health-check-path "/healthz" --app-health-probe-interval 5 --app-health-probe-timeout 500 --app-health-threshold 5
Options
  -p, --project string                      Name of existing project
  -e, --app-endpoint string                 Endpoint used to establish outbound connectivity from the App ID to your external application
  -t, --app-token string                    Application token used to secure calls from the App ID to your provided app endpoint
      --app-protocol string                 Protocol used to interact with the app endpoint (HTTP or gRPC). Defaults to http
  -w, --wait                                Wait for long-running resource creation to finish
  -c, --app-config string                   App config
      --enable-app-health-check             Enable application health checks
      --app-health-check-path string        Path used for health checks; HTTP only (default "/healthz")
      --app-health-probe-interval int32     Interval to probe for the health of the app in seconds (default 5)
      --app-health-probe-timeout int32      Timeout for app health probes in milliseconds (default 500)
      --app-health-threshold int32          Number of consecutive failures for the app to be considered unhealthy (default 3)
      --app-channel-timeout-seconds int32   Timeout in seconds for the App ID to connect to the application endpoint. Default to 60s (default 60)
  -h, --help                                help for create
Options inherited from parent commands
      --api-key string   Diagrid Cloud API key
SEE ALSO
- diagrid appid - Manage App IDs