Skip to content

gcpSetDefaultServiceAccountJwtConfig

Sets the default GCP service account authorization key.

Arguments

Argument Type Description
input (required) GcpSetDefaultServiceAccountJwtConfigInput! Input required to set default GCP service account JWT configuration.

Returns

Boolean!

Sample

mutation GcpSetDefaultServiceAccountJwtConfig($input: GcpSetDefaultServiceAccountJwtConfigInput!) {
  gcpSetDefaultServiceAccountJwtConfig(input: $input)
}
{
  "input": {
    "serviceAccountJwtConfig": "example-string",
    "serviceAccountName": "example-string"
  }
}
{
  "data": {
    "gcpSetDefaultServiceAccountJwtConfig": true
  }
}