Body
*/*
The request body resource
the instance arn id to generate credentials for
Example:
["db-arn-1", "db-arn-2"]
Response
Created
The passwords generated by each instance
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 instance arn id to generate credentials for
["db-arn-1", "db-arn-2"]
Created
The passwords generated by each instance
Show child attributes
Was this page helpful?