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
Show child attributes
The time when this password will expire, another random password will be generated after this time and this password will no longer work.
"2025-02-28T12:34:56Z"
The random password generated for the instance.
"random-password"
Was this page helpful?