<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: CodeTiger96</title>
    <description>The latest articles on DEV Community by CodeTiger96 (@codetiger96).</description>
    <link>https://dev.to/codetiger96</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F299461%2F6e25cca9-5cd1-4140-831b-f80cf5267f18.png</url>
      <title>DEV Community: CodeTiger96</title>
      <link>https://dev.to/codetiger96</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/codetiger96"/>
    <language>en</language>
    <item>
      <title>Get Object ID in Azure Blueprints</title>
      <dc:creator>CodeTiger96</dc:creator>
      <pubDate>Fri, 10 Apr 2020 20:38:16 +0000</pubDate>
      <link>https://dev.to/codetiger96/get-object-id-in-azure-blueprints-45fe</link>
      <guid>https://dev.to/codetiger96/get-object-id-in-azure-blueprints-45fe</guid>
      <description>&lt;p&gt;So, I am trying to spin up a Managed Identity and a KeyVault using Blueprints. I have an individually working template for each. My endgoal is to spin up both resources along with a few more together in the same blueprint. The issue I'm having is that I need to pass my Managed Identity's object ID to the KeyVault template during deployment. I have the blueprint setup to deploy the managed identity resource group, then the managed identity, followed by the keyvault group and keyvault. The deployment is working till the KV resource group and then failing during deployment of keyvault. Does anyone have any insight on how to do this?&lt;br&gt;
Below is the blip of code that contains the access policy&lt;br&gt;
 "resources": [&lt;br&gt;
    {&lt;br&gt;
      "type": "Microsoft.KeyVault/vaults",&lt;br&gt;
      "apiVersion": "2016-10-01",&lt;br&gt;
      "name": "[parameters('keyVaultName')]",&lt;br&gt;
      "location": "[parameters('location')]",&lt;br&gt;
      "properties": {&lt;br&gt;
        "sku": {&lt;br&gt;
          "family": "A",&lt;br&gt;
          "name": "[parameters('skuName')]"&lt;br&gt;
        },&lt;br&gt;
        "tenantId": "[parameters('tenantId')]",&lt;br&gt;
        "accessPolicies": [&lt;br&gt;
          {&lt;br&gt;
            "tenantId": "[parameters('tenantId')]",&lt;br&gt;
            "objectId": "(objectId(parameters('managedIdentityRG'), Microsoft.ManagedIdentity', 'userAssignedIdentities'))",&lt;br&gt;
            "permissions": {&lt;br&gt;
              "keys": "[parameters('keysPermissions')]",&lt;br&gt;
              "secrets": "[parameters('secretsPermissions')]",&lt;br&gt;
              "certificates": "[parameters('certificatePermissions')]"&lt;br&gt;
            }&lt;br&gt;
          },&lt;/p&gt;

</description>
      <category>blueprints</category>
      <category>azure</category>
      <category>objectid</category>
    </item>
    <item>
      <title>Using a load balancer with a Static IP</title>
      <dc:creator>CodeTiger96</dc:creator>
      <pubDate>Mon, 23 Dec 2019 16:40:58 +0000</pubDate>
      <link>https://dev.to/codetiger96/using-a-load-balancer-with-a-static-ip-210p</link>
      <guid>https://dev.to/codetiger96/using-a-load-balancer-with-a-static-ip-210p</guid>
      <description>&lt;p&gt;I recently learned how to create a load balancer with a static IP and I would like to apply it to my existing AKS clusters. Is it possible to add this load balancer to an existing cluster with pods and remove the existing one, or do I need to recreate my cluster from scratch?&lt;/p&gt;

</description>
      <category>kubernetes</category>
      <category>azure</category>
      <category>devops</category>
    </item>
  </channel>
</rss>
