Return an authentication token for a database connection
Source:R/rds_custom.R
rds_build_auth_token.RdReturn an authentication token used as the password for a database connection.
Details
See IAM Database Authentication for MySQL and PostgreSQL for more information on using IAM database authentication with RDS.
Examples
if (FALSE) { # \dontrun{
# This example gets an authentication token for an RDS database, then
# connects to the database using the token.
host <- "database-1.cluster-abcdef123456.us-east-1.rds.amazonaws.com"
port <- 3306
user <- "jane_doe"
token <- svc$build_auth_token(
endpoint = sprintf("%s:%s", host, port),
region = "us-east-1",
user = user
)
conn <- DBI::dbConnect(
drv = RMariaDB::MariaDB(),
user = user,
password = token,
host = host,
port = port,
client.flag = RMariaDB::CLIENT_SSL
)
} # }