Nothing
#' Retrieve BWS Server URL from Environment
#'
#' Retrieves the `BWS_SERVER_URL` from environment variables. This URL is
#' used to define the Bitwarden Secrets Manager server endpoint.
#'
#' @return A character string containing the BWS server URL.
get_bws_server_url <- function() {
bws_server_url <- Sys.getenv("BWS_SERVER_URL")
if (bws_server_url == "") {
stop("No BWS_SERVER_URL provided or set as environment variable.")
}
return(bws_server_url)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.