library
turbot/aws
Get Involved
Version
Pipeline: Create IAM Role
Creates a new role for your Amazon Web Services account.
Run the pipeline
To run this pipeline from your terminal:
flowpipe pipeline run aws.pipeline.create_iam_role \ --arg 'role_name=<string>' \ --arg 'assume_role_policy_document=<string>'
Use this pipeline
To call this pipeline from your pipeline, use a step:
step "pipeline" "step_name" { pipeline = aws.pipeline.create_iam_role args = { role_name = <string> assume_role_policy_document = <string> }}
Params
Name | Type | Required | Description | Default |
---|---|---|---|---|
conn | connection.aws | Yes | Name of AWS connection to use. If not provided, the default AWS connection will be used. | connection.aws.default |
role_name | string | Yes | The name of the role to create. Must be unique within the account. | - |
assume_role_policy_document | string | Yes | The trust relationship policy document that grants an entity permission to assume the role. A JSON policy that has been converted to a string. | - |
Outputs
Name | Description |
---|---|
role | A structure containing details about the new role. |