Alphaus | Documentation
WebsiteRepoTech blog (JP)Tech blog (EN)
ALM v2.0
ALM v2.0
  • Mobingi Documentation (v2.0)
  • Getting started
  • Guides and tutorials
    • Stack lifecycle
      • Deploy stack
      • Manage stack
    • Docker
      • Custom Docker containers
    • Others
      • Blue-green deployment
      • How to use RDS
      • Environment variables
      • Custom installation script
      • SSH into your container
    • FAQ
  • API Reference
    • Overview
    • Stacks
      • List stacks
      • Create stack
      • Describe stack
      • Update stack
      • Delete stack
      • Deploy code
      • Put lifecycle hook
      • Get lifecycle hook
      • Restart instance
      • Describe ServiceConfig
      • Update ServerConfig
    • Vendor credentials
      • List credentials
      • Save credentials
      • Delete credentials
Powered by GitBook
On this page

Was this helpful?

  1. API Reference
  2. Vendor credentials

Save credentials

POST /v2/credentials/{vendor}

Parameters

Type

Required

Details

credentials

array

yes

contains credentials information (see example request below)

Request header:

Authorization: Bearer eyJ0eXAiOiJ83fjQb3LzMeXzQfME
Content-Type: application/json

Request body:

{
  "credentials": {
    "AWSAccessKeyId": "*** your aws access key id ***",
    "AWSSecretKey": "*** your aws secret key ***",
    "AWSAccountName": "My Aws account 1"
  }
}

Response body:

HTTP/1.1 200 OK

{
    "status":"success"
}
PreviousList credentialsNextDelete credentials

Last updated 6 years ago

Was this helpful?