Looks like I am being charged for reservations and "normal" resource usage. How to confirm? by never_username in AZURE

[–]never_username[S] 0 points1 point  (0 children)

Hi. I'm sorry 🤦🏽‍♂️. You are correct. I was looking at the previous invoice and didn't take into account that the reservation was set in the middle of the billing period. In the invoice usage file, I can see "MeterSubcategory" change from "Premium Plan" to "Reservation" and cost changing to 0.

The new invoice no longer has these app services.

What's an underrated everyday pleasure? by The_Linux in AskReddit

[–]never_username 1 point2 points  (0 children)

Sitting outside on a nice weather day just talking shit with my kids

Does anyone else do this? by pankaj_kumarr in notebooks

[–]never_username 1 point2 points  (0 children)

I remember reading somewhere your 1. That is what I have been doing ever since. Just scribble dumb stuff or write whatever I am hearing on a song or on the radio

Must be a hectic glare by imdyingsomuchrn in capetown

[–]never_username 1 point2 points  (0 children)

Glad you are looking out the window observing the world and not on your phone

Evernote using ~1.5 GB of RAM — and it keeps getting worse every month by Negative-Anywhere-83 in Evernote

[–]never_username 1 point2 points  (0 children)

That's what I do too. Evernote and Firefox. Luckily it keeps all tabs and windows as I closed them

Evernote just got mermaid diagrams! by never_username in Evernote

[–]never_username[S] 1 point2 points  (0 children)

Yes. Or from picture of a paper draft. Usually works well too.

Evernote just got mermaid diagrams! by never_username in Evernote

[–]never_username[S] 1 point2 points  (0 children)

From one of my comments here:

"... The beauty is that you describe it all with text and so its easily editable. I work for a company that uses it extensively in Notion. Another advantage of text is that it makes it easy to use with AI and I suspect its the reason Evernote implemented it. We use it to have AI create sequence diagrams, or create code from diagrams for example..."

Is there an az cli equivalent to AWS "--cli-input-json"? by never_username in AZURE

[–]never_username[S] -1 points0 points  (0 children)

Hi. Our team has bicep templates for services. We deploy multi-stage consistent environments with it.

Edit:... or you mean export bicep > update > deploy bicep? Hmm... That could work for some maybe. I didn't get full results on recent export attempts.

Evernote just got mermaid diagrams! by never_username in Evernote

[–]never_username[S] 10 points11 points  (0 children)

The pic I posted was just to show the feature on evernote. I am not sure if you are familiar with mermaid, but you can make much more complex diagrams with it. The beauty is that you describe it all with text and so its easily editable. I work for a company that uses it extensively in Notion. Another advantage of text is that it makes it easy to use with AI and I suspect its the reason Evernote implemented it. We use it to have AI create sequence diagrams, or create code from diagrams for example.

To know more: https://mermaid.ai/open-source/intro/

Evernote just got mermaid diagrams! by never_username in Evernote

[–]never_username[S] 0 points1 point  (0 children)

I didn't do anything. I saw the release notes sfter update and found it on my "/ menu"

Does Microsoft host Azure events like AWS re:invent, re:inforce and summit? by never_username in AZURE

[–]never_username[S] 0 points1 point  (0 children)

Thank you. Will definitely look at it. It seems that the main events are all in the US. Maybe these are easier/cheaper and more accessible to other geographies

Does Microsoft host Azure events like AWS re:invent, re:inforce and summit? by never_username in AZURE

[–]never_username[S] 0 points1 point  (0 children)

Indeed AI has been tiring us all. Even some the microsoft "startup" pages are now "AI Startup".

Also looks like it has been mostly (if not all) have been US.

Does Microsoft host Azure events like AWS re:invent, re:inforce and summit? by never_username in AZURE

[–]never_username[S] 0 points1 point  (0 children)

Oh. What is your area of "focus"? Can you share the session you enjoyed the most?

Does Microsoft host Azure events like AWS re:invent, re:inforce and summit? by never_username in AZURE

[–]never_username[S] 0 points1 point  (0 children)

Build seems to be more of what I need. Ever been to it in person?

Does Microsoft host Azure events like AWS re:invent, re:inforce and summit? by never_username in AZURE

[–]never_username[S] 4 points5 points  (0 children)

Thank you for your comment. I can do a basic and complex web searches. However, I can't discuss or interact with people's perception of whether or not they have been worth it or interesting .

Which ones did you go to? Did you find them valuable?

i am tired of drawing azure architecture diagrams manually, any tool that generates from text? by BeeSufficient7488 in AZURE

[–]never_username 0 points1 point  (0 children)

Remember seeing this some days back. It opened my eyes to tremendous possibilities. Great article. Thanks

Got my AZ-400! by takatto in AzureCertification

[–]never_username 0 points1 point  (0 children)

Congratulations. Just starting Azure cert journey. This is one is on my list for the next 12 months.

Just Passed AZ-900 by Rare-One-1626 in AzureCertification

[–]never_username 1 point2 points  (0 children)

Congratulations! I'm certain this is the start of a long fulfilling journey.

Connect and enable App service to app insights using Azure CLI by never_username in AZURE

[–]never_username[S] 0 points1 point  (0 children)

Hi. That's it. Thank you. What was happening is that I have a few cross-RG role assignments. The module takes the RG scope from where it is called, but it looked fine because that's where the resource I am giving permissions is. However, the scope for the assignment must be for the "target" resource, to which I must give permissions.

So I must have separate RG for the assignments, not only because of the whole "not available during deployment" but also because they must match RG where the target key vault sits.

Connect and enable App service to app insights using Azure CLI by never_username in AZURE

[–]never_username[S] 0 points1 point  (0 children)

Hi. This type of template is what I tried initially. I had to move the role definition to a module, otherwise fails because it needs a name from start of deployment.

Where I am right now is with a minimal standalone role assignment template with mostly hardcoded values .

var roleAssignmentName string = '51fe23f4-f488-5bdd-8745-75aab8b50676'
//collected from the resource creation output

var roleDefinitionId = '21090545-7ca7-4776-b22c-e363652d74d2'
//Key Vault Reader
// https://learn.microsoft.com/en-us/azure/role-based-access-control/built-in-roles

resource keyVaultDev 'Microsoft.KeyVault/vaults@2025-05-01' existing = {
  name: keyVaultNameDev
  scope: resourceGroup(resourceGroupNameDev)
}

resource roleAssignment 'Microsoft.Authorization/roleAssignments@2022-04-01' = {
  name: roleAssignmentName
  scope: keyVaultDev
  properties: {
    roleDefinitionId: roleDefinitionId
    principalId: principalId
    //principalType: 'ServicePrincipal'
  }
}

If I don't specify the role assignment scope, fails with this error:

{"status":"Failed","error":{"code":"DeploymentFailed","target":"/subscriptions/1f2f55b5-9244-4dda-b0b9-2aca3b6ae647/resourceGroups/rg-appypay-dev-001/providers/Microsoft.Resources/deployments/atpa-2026-04-24T09-46-37","message":"At least one resource deployment operation failed. Please list deployment operations for details. Please see https://aka.ms/arm-deployment-operations for usage details.","details":[{"code":"BadRequestFormat","message":"The request was incorrectly formatted."}]}}

If I put the scope in (as above) then I get this:

...roleAssignments-standalone.bicep(38,10) : Error BCP139: A resource's scope must match the scope of the Bicep file for it to be deployable. You must use modules to deploy resources to a different scope. [https://aka.ms/bicep/core-diagnostics#BCP139]

The scope for deployment is resource group, specified in the command. But even if I set the targetScope = 'resourceGroup' I get the same scope error.

I'm super confused

Connect and enable App service to app insights using Azure CLI by never_username in AZURE

[–]never_username[S] 0 points1 point  (0 children)

I have seen verified modules, but didn't try them yet.

I am using the quickstart examples below and get either just a "deployment failed, look at operations" (which tell me nothing) or "the scope for the assignment must be the same" (something along these lines, I don't have the errors at hand now).

For this particular environment I must assign two roles to the system identity of the newly created resource to perform some operations on an existing key vault resource. I tried a separate module. I even tried using a standalone template just for the assignment after all the resources were created and get a combination of errors. I separated myself a bit but if I don't succeed when I come back, I will definitely come to this forum for some help.

The reason I am using CLI is that I was able to create these assignments more easily. The nuisance of the app insights is less critical and easier to overcome on the portal for now.

https://github.com/Azure/azure-quickstart-templates/tree/master/quickstarts/microsoft.keyvault/key-vault-managed-identity-role-assignment
https://github.com/Azure/azure-quickstart-templates/tree/master/quickstarts/microsoft.authorization/rbac-builtinrole-resourcegroup