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": {}
}Was this page helpful?