library
turbot/aws
Get Involved
Version
Pipeline: Create IAM Policy
Creates a new policy for your Amazon Web Services account.
Run the pipeline
To run this pipeline from your terminal:
flowpipe pipeline run aws.pipeline.create_iam_policy \ --arg 'policy_name=<string>' \ --arg '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_policy args = { policy_name = <string> 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 |
policy_name | string | Yes | The friendly name of the policy. | - |
policy_document | string | Yes | The trust relationship policy document that grants an entity policy to assume the policy. A JSON policy that has been converted to a string. | - |
Outputs
Name | Description |
---|---|
policy | A structure containing details about the new policy. |