Back to Infisical

Octopus Deploy Connection

docs/integrations/app-connections/octopus-deploy.mdx

0.159.257.7 KB
Original Source

Infisical supports the use of API Keys to connect with Octopus Deploy.

Create Octopus Deploy API Key

Octopus Deploy supports two methods for creating API keys: via a user profile or via a service account.

<Tabs> <Tab title="Service Account API Key (Recommended)">
<Steps>
  <Step title='Navigate to Service Accounts'>
    From your Octopus Deploy dashboard, go to **Configuration** > **Users** and click on the **Create Service Accounts** button.
    ![Service Accounts](/images/app-connections/octopus-deploy/service-account-nav.png)
  </Step>
  <Step title='Create a new Service Account'>
    Provide:
    - Username: A name for the service account
    - Display Name: A display name for the service account

    Then click **Save**.
    ![Create Service Account](/images/app-connections/octopus-deploy/service-account-create.png)
  </Step>
  <Step title='Create a Team'>
    Navigate to **Configuration** > **Teams** and click **Add Team**.

    ![Add Team](/images/app-connections/octopus-deploy/add-team.png)

    Provide:
    - New Team Name: A name for the team
    - Team Description(optional): A description for the team
    - Select the team access type:
      - Accessible in the `current` space only
      - Accessible in all spaces(system team)

    ![Create Team](/images/app-connections/octopus-deploy/create-team.png)
    Then click **Save**.
  </Step>
  <Step title='Add Service Account to Team'>
    After creating the team, you will be redirected to the team details page. Click on the **Add Members** button.

    ![Add Service Account to Team](/images/app-connections/octopus-deploy/team-add-member.png)

    Select the service account you created in the previous step and click **Add**.
    ![Add Service Account to Team](/images/app-connections/octopus-deploy/team-add-member-select.png)
  </Step>

  <Step title="Add User Role to the team">
    After adding the service account to the team, Click on the **User Roles** tab and click **Include User Role** button.

    ![Add User Role to Team](/images/app-connections/octopus-deploy/team-user-role.png)

    Search for the **Project Contributor** role and click on the **Apply** button.
    ![Apply User Role to Team](/images/app-connections/octopus-deploy/team-apply-user-role.png)

    Click on the **Save** button.
    ![Save User Role to Team](/images/app-connections/octopus-deploy/save-team-settings.png)
  </Step>
  <Step title='Navigate to the API Keys section'>
    After saving the team settings, we have to create an API key for the service account. Go back to **Configuration** > **Users** and find your service account. Click on the service account to view its details.

    Click on the **API Keys** section and click **New API Key**.
    ![Create Service Account API Key](/images/app-connections/octopus-deploy/service-account-api-key.png)
</Step>
  <Step title='Generate an API Key'>
    Provide a purpose for the key and set an expiry date, then click **Generate New**.
    ![Generate API Key](/images/app-connections/octopus-deploy/service-account-api-key-generate.png)
  </Step>
  <Step title='Copy the API Key securely'>
    Make sure to copy the API key now, you won't be able to access it again.
    ![Service Account API Key Generated](/images/app-connections/octopus-deploy/service-account-key-generated.png)
  </Step>
</Steps>
</Tab>
<Tab title="User Profile API Key">

<Note>
  Infisical recommends using a service account for production integrations as they provide better security and are not tied to individual user accounts.
</Note>
<Steps>
  <Step title='Navigate to your user profile'>
    From your Octopus Deploy dashboard, click on your profile in the bottom left corner and select **My profile**.
    ![Octopus Deploy User Profile](/images/app-connections/octopus-deploy/app-connection-profile.png)
  </Step>
  <Step title='Navigate to the My API Keys section'>
    In your profile settings, go to the **My API Keys** tab and click **New API Key**.
    ![API Keys Tab](/images/app-connections/octopus-deploy/app-connection-api-keys.png)
  </Step>
  <Step title='Create a new API Key'>
    Provide a purpose for the key. Set an expiry date, then click **Generate New**.
    ![Create API Key](/images/app-connections/octopus-deploy/app-connection-create-key.png)
  </Step>
  <Step title='Copy the API Key securely'>
    Make sure to copy the API key now, you won't be able to access it again.
    ![API Key Generated](/images/app-connections/octopus-deploy/app-connection-key-generated.png)
  </Step>
</Steps>
</Tab> </Tabs>

Create an Octopus Deploy Connection in Infisical

<Tabs> <Tab title="Infisical UI"> <Steps> <Step title="Navigate to App Connections"> In your Infisical dashboard, navigate to the **Integrations** tab in the desired project, then select **App Connections**. ![App Connections Tab](/images/app-connections/general/add-connection.png) </Step> <Step title="Select Octopus Deploy Connection"> Click **+ Add Connection** and choose **Octopus Deploy** Connection from the list of integrations. ![Select Octopus Deploy Connection](/images/app-connections/octopus-deploy/app-connection-option.png) </Step> <Step title="Fill out the Octopus Deploy Connection form"> Complete the form by providing: - A descriptive name for the connection - An optional description - The Instance URL (e.g., https://your-instance.octopus.app) - The API Key from the previous step ![Octopus Deploy Connection Modal](/images/app-connections/octopus-deploy/app-connection-form.png) </Step> <Step title="Connection created"> After submitting the form, your **Octopus Deploy Connection** will be successfully created and ready to use with your Infisical project. ![Octopus Deploy Connection Created](/images/app-connections/octopus-deploy/app-connection-generated.png) </Step> </Steps> </Tab> <Tab title="API"> To create an Octopus Deploy Connection via API, send a request to the [Create Octopus Deploy Connection](/api-reference/endpoints/app-connections/octopus-deploy/create) endpoint.
### Sample request

```bash Request
curl    --request POST \
        --url https://app.infisical.com/api/v1/app-connections/octopus-deploy \
        --header 'Content-Type: application/json' \
        --data '{
            "name": "my-octopus-deploy-connection",
            "method": "api-key",
            "projectId": "abcdef12-3456-7890-abcd-ef1234567890",
            "credentials": {
                "instanceUrl": "https://your-instance.octopus.app",
                "apiKey": "[API KEY]"
            }
        }'
```

### Sample response

```json Response
{
  "appConnection": {
      "id": "a1b2c3d4-5678-90ab-cdef-1234567890ab",
      "name": "my-octopus-deploy-connection",
      "description": null,
      "projectId": "abcdef12-3456-7890-abcd-ef1234567890",
      "version": 1,
      "orgId": "abcdef12-3456-7890-abcd-ef1234567890",
      "createdAt": "2025-10-13T10:15:00.000Z",
      "updatedAt": "2025-10-13T10:15:00.000Z",
      "isPlatformManagedCredentials": false,
      "credentialsHash": "d41d8cd98f00b204e9800998ecf8427e",
      "app": "octopus-deploy",
      "method": "api-key",
      "credentials": {
        "instanceUrl": "https://your-instance.octopus.app",
      }
  }
}
```
</Tab> </Tabs>