Oracle Cloud Infrastructure · Arazzo Workflow

Oracle Cloud Onboard IAM User

Version 1.0.0

Create an IAM group, create a user, then create a policy granting the group access.

1 workflow 3 source APIs 1 provider
View Spec View on GitHub Cloud ComputingEnterprise CloudInfrastructure-as-a-ServiceOraclePlatform-as-a-ServiceComputeObject StorageIdentity and Access ManagementDatabaseKubernetesServerlessMonitoringEvent-DrivenArazzoWorkflows

Provider

oracle-cloud

Workflows

onboard-iam-user
Create a group, create a user, then create a policy for the group.
Creates an IAM group and user, then creates a policy with statements granting the group access.
3 steps inputs: compartmentId, groupDescription, groupName, policyDescription, policyName, policyStatements, userDescription, userEmail, userName outputs: groupId, policyId, userId
1
createGroup
Create a new IAM group in the compartment.
2
createUser
Create a new IAM user in the compartment.
3
createPolicy
Create a policy whose statements grant the new group access within the compartment.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Oracle Cloud Onboard IAM User
  summary: Create an IAM group, create a user, then create a policy granting the group access.
  description: >-
    Onboards a new identity in Oracle Cloud Infrastructure IAM. The workflow
    creates a group, creates a user in the tenancy, and creates a policy whose
    statements grant the new group access to a compartment. Every step spells out
    its request inline so the onboarding flow can be read and executed without
    opening the underlying OpenAPI description.
  version: 1.0.0
sourceDescriptions:
- name: groupsApi
  url: ../openapi/oracle-cloud-groups-api-openapi.yml
  type: openapi
- name: policiesApi
  url: ../openapi/oracle-cloud-policies-api-openapi.yml
  type: openapi
- name: usersApi
  url: ../openapi/oracle-cloud-users-api-openapi.yml
  type: openapi
workflows:
- workflowId: onboard-iam-user
  summary: Create a group, create a user, then create a policy for the group.
  description: >-
    Creates an IAM group and user, then creates a policy with statements
    granting the group access.
  inputs:
    type: object
    required:
    - compartmentId
    - groupName
    - userName
    - userDescription
    - policyName
    - policyStatements
    properties:
      compartmentId:
        type: string
        description: The OCID of the compartment (tenancy) for the identities.
      groupName:
        type: string
        description: The name of the IAM group to create.
      groupDescription:
        type: string
        description: A description for the group.
      userName:
        type: string
        description: The login name for the user (typically an email address).
      userDescription:
        type: string
        description: A description for the user.
      userEmail:
        type: string
        description: The email address for the user.
      policyName:
        type: string
        description: The name of the policy to create.
      policyDescription:
        type: string
        description: A description for the policy.
      policyStatements:
        type: array
        description: The list of policy statements granting access.
        items:
          type: string
  steps:
  - stepId: createGroup
    description: Create a new IAM group in the compartment.
    operationId: createGroup
    requestBody:
      contentType: application/json
      payload:
        compartmentId: $inputs.compartmentId
        name: $inputs.groupName
        description: $inputs.groupDescription
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      groupId: $response.body#/id
      groupName: $response.body#/name
  - stepId: createUser
    description: Create a new IAM user in the compartment.
    operationId: createUser
    requestBody:
      contentType: application/json
      payload:
        compartmentId: $inputs.compartmentId
        name: $inputs.userName
        description: $inputs.userDescription
        email: $inputs.userEmail
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      userId: $response.body#/id
  - stepId: createPolicy
    description: >-
      Create a policy whose statements grant the new group access within the
      compartment.
    operationId: createPolicy
    requestBody:
      contentType: application/json
      payload:
        compartmentId: $inputs.compartmentId
        name: $inputs.policyName
        description: $inputs.policyDescription
        statements: $inputs.policyStatements
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      policyId: $response.body#/id
  outputs:
    groupId: $steps.createGroup.outputs.groupId
    userId: $steps.createUser.outputs.userId
    policyId: $steps.createPolicy.outputs.policyId

Work with this as data

Every workflow here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for arazzo workflows

4 MCP tools reach this
  • find_arazzoBrowse and filter every workflow in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This workflow
curl "https://apis.io/api/v1/arazzo/oracle-cloud-onboard-iam-user-workflow"
All arazzo workflows
curl "https://apis.io/api/v1/arazzo?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.