library
turbot/gcp
Get Involved
Version
Pipeline: Set Service Account for Instance
This pipeline sets the service account and scopes for a Google Compute Engine instance.
Run the pipeline
To run this pipeline from your terminal:
flowpipe pipeline run gcp.pipeline.set_service_account_for_compute_instance \ --arg 'project_id=<string>' \ --arg 'zone=<string>' \ --arg 'instance_name=<string>'
Use this pipeline
To call this pipeline from your pipeline, use a step:
step "pipeline" "step_name" { pipeline = gcp.pipeline.set_service_account_for_compute_instance args = { project_id = <string> zone = <string> instance_name = <string> }}
Params
Name | Type | Required | Description | Default |
---|---|---|---|---|
conn | connection.gcp | Yes | Name of GCP connection to use. If not provided, the default GCP connection will be used. | connection.gcp.default |
project_id | string | Yes | The GCP project ID. | - |
zone | string | Yes | The GCP zone. | - |
instance_name | string | Yes | The name of the compute instance. | - |
service_account | string | No | The service account to set for the instance. | - |
scopes | list(string) | No | The list of scopes to set for the instance. | - |
Outputs
This pipeline has no outputs.