<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>2025-08-01-preview on Radius Docs</title><link>https://edge.docs.radapp.io/reference/resources/radius.data/2025-08-01-preview/</link><description>Recent content in 2025-08-01-preview on Radius Docs</description><generator>Hugo</generator><language>en-us</language><atom:link href="https://edge.docs.radapp.io/reference/resources/radius.data/2025-08-01-preview/index.xml" rel="self" type="application/rss+xml"/><item><title>Radius.Data/mongoDatabases@2025-08-01-preview</title><link>https://edge.docs.radapp.io/reference/resources/radius.data/2025-08-01-preview/mongodatabases/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://edge.docs.radapp.io/reference/resources/radius.data/2025-08-01-preview/mongodatabases/</guid><description>&lt;h2 id="description"&gt;Description&lt;/h2&gt;
&lt;p&gt;The Radius.Data/mongoDatabases Resource Type deploys a Mongo-compatible
database. To deploy a Mongo database, add a mongoDatabases resource to the
application definition Bicep file. The Azure recipe uses Cosmos DB for
MongoDB and exposes its endpoint and connection string as resource
properties.&lt;/p&gt;
&lt;div class="highlight"&gt;&lt;pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-text-size-adjust:none;"&gt;&lt;code class="language-bicep" data-lang="bicep"&gt;&lt;span style="display:flex;"&gt;&lt;span&gt;&lt;span style="color:#66d9ef"&gt;resource&lt;/span&gt; database &lt;span style="color:#e6db74"&gt;&amp;#39;Radius.Data/mongoDatabases@2025-08-01-preview&amp;#39;&lt;/span&gt; = {
&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span&gt; name: &lt;span style="color:#e6db74"&gt;&amp;#39;mongo&amp;#39;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span&gt; properties: {
&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span&gt; environment: environment
&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span&gt; application: myApplication.id
&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span&gt; database: &lt;span style="color:#e6db74"&gt;&amp;#39;mongo_db&amp;#39;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span&gt; }
&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span&gt;}
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;To connect your container to the database, create a connection from the
Container resource to the database as shown below.&lt;/p&gt;</description></item><item><title>Radius.Data/mySqlDatabases@2025-08-01-preview</title><link>https://edge.docs.radapp.io/reference/resources/radius.data/2025-08-01-preview/mysqldatabases/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://edge.docs.radapp.io/reference/resources/radius.data/2025-08-01-preview/mysqldatabases/</guid><description>&lt;h2 id="description"&gt;Description&lt;/h2&gt;
&lt;p&gt;The Radius.Data/mySqlDatabases Resource Type deploys a MySQL database. Provide the administrator &lt;code&gt;username&lt;/code&gt; and &lt;code&gt;password&lt;/code&gt; directly on the resource. The &lt;code&gt;password&lt;/code&gt; property is marked &lt;code&gt;x-radius-sensitive&lt;/code&gt;, so Radius encrypts it at rest, redacts it on reads, and exposes it (decrypted) only to the platform-engineer recipe that provisions the database.&lt;/p&gt;
&lt;div class="highlight"&gt;&lt;pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-text-size-adjust:none;"&gt;&lt;code class="language-bicep" data-lang="bicep"&gt;&lt;span style="display:flex;"&gt;&lt;span&gt;&lt;span style="color:#66d9ef"&gt;resource&lt;/span&gt; mysql &lt;span style="color:#e6db74"&gt;&amp;#39;Radius.Data/mySqlDatabases@2025-08-01-preview&amp;#39;&lt;/span&gt; = {
&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span&gt; name: &lt;span style="color:#e6db74"&gt;&amp;#39;mysql&amp;#39;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span&gt; properties: {
&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span&gt; environment: environment
&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span&gt; application: myApplication.id
&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span&gt; version: &lt;span style="color:#e6db74"&gt;&amp;#39;8.0&amp;#39;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span&gt; database: &lt;span style="color:#e6db74"&gt;&amp;#39;appdb&amp;#39;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span&gt; username: &lt;span style="color:#e6db74"&gt;&amp;#39;myadmin&amp;#39;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span&gt; &lt;span style="color:#75715e"&gt;// From a @secure() password parameter passed in via the CLI&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span&gt; password: password
&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span&gt; }
&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span&gt;}
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;When deploying the application definition, provide the database password value as a parameter. It is recommended to use a password generator such as &lt;code&gt;openssl&lt;/code&gt; or equivalent. For example, &lt;code&gt;rad deploy app.bicep -p ****** rand -hex 16)&lt;/code&gt;.&lt;/p&gt;</description></item><item><title>Radius.Data/postgreSqlDatabases@2025-08-01-preview</title><link>https://edge.docs.radapp.io/reference/resources/radius.data/2025-08-01-preview/postgresqldatabases/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://edge.docs.radapp.io/reference/resources/radius.data/2025-08-01-preview/postgresqldatabases/</guid><description>&lt;h2 id="description"&gt;Description&lt;/h2&gt;
&lt;p&gt;The Radius.Data/postgreSqlDatabases Resource Type deploys a PostgreSQL database. Provide the administrator &lt;code&gt;username&lt;/code&gt; and &lt;code&gt;password&lt;/code&gt; directly on the resource. The &lt;code&gt;password&lt;/code&gt; property is marked &lt;code&gt;x-radius-sensitive&lt;/code&gt;, so Radius encrypts it at rest, redacts it on reads, and exposes it (decrypted) only to the recipe that provisions the database.&lt;/p&gt;
&lt;div class="highlight"&gt;&lt;pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-text-size-adjust:none;"&gt;&lt;code class="language-bicep" data-lang="bicep"&gt;&lt;span style="display:flex;"&gt;&lt;span&gt;&lt;span style="color:#66d9ef"&gt;resource&lt;/span&gt; postgresql &lt;span style="color:#e6db74"&gt;&amp;#39;Radius.Data/postgreSqlDatabases@2025-08-01-preview&amp;#39;&lt;/span&gt; = {
&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span&gt; name: &lt;span style="color:#e6db74"&gt;&amp;#39;postgresql&amp;#39;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span&gt; properties: {
&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span&gt; environment: environment
&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span&gt; application: myApplication.id
&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span&gt; size: &lt;span style="color:#e6db74"&gt;&amp;#39;S&amp;#39;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span&gt; database: &lt;span style="color:#e6db74"&gt;&amp;#39;appdb&amp;#39;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span&gt; username: &lt;span style="color:#e6db74"&gt;&amp;#39;myadmin&amp;#39;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span&gt; &lt;span style="color:#75715e"&gt;// From a @secure() password parameter passed in via the CLI&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span&gt; password: password
&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span&gt; }
&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span&gt; }
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;When deploying the application definition, provide the database password value as a parameter. It is recommended to use a password generator such as &lt;code&gt;openssl&lt;/code&gt; or equivalent. For example, &lt;code&gt;rad deploy app.bicep -p password=$(openssl rand -hex 16)&lt;/code&gt;.&lt;/p&gt;</description></item><item><title>Radius.Data/redisCaches@2025-08-01-preview</title><link>https://edge.docs.radapp.io/reference/resources/radius.data/2025-08-01-preview/rediscaches/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://edge.docs.radapp.io/reference/resources/radius.data/2025-08-01-preview/rediscaches/</guid><description>&lt;h2 id="description"&gt;Description&lt;/h2&gt;
&lt;p&gt;The Radius.Data/redisCaches Resource Type deploys a Redis cache. To deploy a
Redis cache, add a redisCaches resource to the application definition Bicep
file. Unlike database types, no secret is required: Azure Managed Redis
generates its own access keys, so the platform-engineer recipe needs no
injected credentials.&lt;/p&gt;
&lt;div class="highlight"&gt;&lt;pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-text-size-adjust:none;"&gt;&lt;code class="language-bicep" data-lang="bicep"&gt;&lt;span style="display:flex;"&gt;&lt;span&gt;&lt;span style="color:#66d9ef"&gt;resource&lt;/span&gt; cache &lt;span style="color:#e6db74"&gt;&amp;#39;Radius.Data/redisCaches@2025-08-01-preview&amp;#39;&lt;/span&gt; = {
&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span&gt; name: &lt;span style="color:#e6db74"&gt;&amp;#39;redis&amp;#39;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span&gt; properties: {
&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span&gt; environment: environment
&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span&gt; application: myApplication.id
&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span&gt; size: &lt;span style="color:#e6db74"&gt;&amp;#39;S&amp;#39;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span&gt; }
&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span&gt;}
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;To connect your container to the cache, create a connection from the
Container resource to the cache as shown below.&lt;/p&gt;</description></item><item><title>Radius.Data/sqlServerDatabases@2025-08-01-preview</title><link>https://edge.docs.radapp.io/reference/resources/radius.data/2025-08-01-preview/sqlserverdatabases/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://edge.docs.radapp.io/reference/resources/radius.data/2025-08-01-preview/sqlserverdatabases/</guid><description>&lt;h2 id="description"&gt;Description&lt;/h2&gt;
&lt;p&gt;The Radius.Data/sqlServerDatabases Resource Type deploys a SQL database. Provide the administrator &lt;code&gt;username&lt;/code&gt; and &lt;code&gt;password&lt;/code&gt; directly on the resource. The &lt;code&gt;password&lt;/code&gt; property is marked &lt;code&gt;x-radius-sensitive&lt;/code&gt;, so Radius encrypts it at rest, redacts it on reads, and exposes it (decrypted) only to the recipe that provisions the database.&lt;/p&gt;
&lt;div class="highlight"&gt;&lt;pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-text-size-adjust:none;"&gt;&lt;code class="language-bicep" data-lang="bicep"&gt;&lt;span style="display:flex;"&gt;&lt;span&gt;&lt;span style="color:#66d9ef"&gt;resource&lt;/span&gt; sqlserver &lt;span style="color:#e6db74"&gt;&amp;#39;Radius.Data/sqlServerDatabases@2025-08-01-preview&amp;#39;&lt;/span&gt; = {
&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span&gt; name: &lt;span style="color:#e6db74"&gt;&amp;#39;sqlserver&amp;#39;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span&gt; properties: {
&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span&gt; environment: environment
&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span&gt; application: myApplication.id
&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span&gt; database: &lt;span style="color:#e6db74"&gt;&amp;#39;appdb&amp;#39;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span&gt; username: &lt;span style="color:#e6db74"&gt;&amp;#39;myadmin&amp;#39;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span&gt; &lt;span style="color:#75715e"&gt;// From a @secure() password parameter passed in via the CLI&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span&gt; password: password
&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span&gt; }
&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span&gt;}
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;When deploying the application definition, provide the database password value as a parameter. It is recommended to use a password generator such as &lt;code&gt;openssl&lt;/code&gt; or equivalent. For example, &lt;code&gt;rad deploy app.bicep -p password=$(openssl rand -hex 16)&lt;/code&gt;.&lt;/p&gt;</description></item></channel></rss>