Body
*/*
The request body resource
The body is of type object
.
Response
Created
The response is of type object
.
curl --request POST \
--url https://use.hoop.dev/api/integrations/aws/rds/credentials \
--header 'Content-Type: */*' \
--data '{
"instances": [
"db-arn-1",
"db-arn-2"
]
}'
{
"credentials": {}
}
It creates password for RDS instances that is used to reset the root password when executing the database role job. The password are used only once and expire after 30 minutes.
curl --request POST \
--url https://use.hoop.dev/api/integrations/aws/rds/credentials \
--header 'Content-Type: */*' \
--data '{
"instances": [
"db-arn-1",
"db-arn-2"
]
}'
{
"credentials": {}
}
The request body resource
The body is of type object
.
Created
The response is of type object
.
Was this page helpful?