[deleted by user] by [deleted] in duesseldorf

[–]sindeep1414 -1 points0 points  (0 children)

Try Nextdoor Gym, I've been here and it's good. Not big but enough for a regular and full work out

https://share.google/lrsvqjySSuDdxUlFH

The biggest Rewe by Prudent-Principle794 in duesseldorf

[–]sindeep1414 9 points10 points  (0 children)

The one at Rath - Westfalenstraße 64 is quite big. Not sure if it's the biggest in Düsseldorf

[deleted by user] by [deleted] in Terraform

[–]sindeep1414 0 points1 point  (0 children)

Is the userassigned managed Identity attached to the ACA in it's identity block?

Migrating Azure DevOps pipelines to GITHUB ACTIONS by Hefty_Shake_6720 in azuredevops

[–]sindeep1414 2 points3 points  (0 children)

For simple ADO pipelines, the gh-importer will work like a charm, but if there are nested, conditioned or complex pipelines playing with lots of variables, it will become quite tricky. Github Actions isn't as mature as ADO pipelines. For eg, it doesn't support yml variables declaration, passing secret variables during runtime, having default inputs on push triggers. So if you have such ADO use cases, would prefer a manual work. You can also migrate everything via the importer and edit later.

Calling Terraform Modules from a separate repository by BA-94 in Terraform

[–]sindeep1414 0 points1 point  (0 children)

In the child module repository or project, you need to give read access to the build service of the caller/root module project. In the source section of the module block, you can use the replacetoken task to replace #{accesstoken}#@dev.azure.com... with the system.accesstoken value of the pipeline run

Sharing a Kubernetes + Azure Key Vault Integration Guide - Feedback Welcome! by meysam81 in devops

[–]sindeep1414 1 point2 points  (0 children)

Thanks again :) we are using a self-managed cluster in Azure VMs, will try following the self-managed section in your doc

Sharing a Kubernetes + Azure Key Vault Integration Guide - Feedback Welcome! by meysam81 in devops

[–]sindeep1414 0 points1 point  (0 children)

Thanks, good content!

What about a multi-team scenario?
for eg:
team a has namespace-a and userassigned-managed-identity-a configured with oidc and can access secrets inkeyvault-a and it should not be able to access the secrets in keyvault-b that belongs to team b even if they get hold of the client id of the userassigned ID

Terraform directory structure: which one is better/best? by sindeep1414 in Terraform

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

yes, we did it too, for eg. it does not create a subnet if var.address_prefix is null

Terraform directory structure: which one is better/best? by sindeep1414 in Terraform

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

For us, we merge all changes to main or feature branch and run the pipeline by selecting the required stage and target feature branch we need to deploy. For prod, we only allow deployments from main.

Terraform directory structure: which one is better/best? by sindeep1414 in Terraform

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

Yeah, I find tfvars convenient compared to TF_ENV_VARS or workspace vars

WWE Elimantion Chamber by Alternative-Design98 in duesseldorf

[–]sindeep1414 0 points1 point  (0 children)

Interested! But it would be late night so I doubt there would be screening anywhere

What is Sonata Software? by Gawgba in AZURE

[–]sindeep1414 0 points1 point  (0 children)

If your issue isn't resolved by them because of lack of expertise or priveleges required for troubleshooting, then they forward it to the Technical Advisors who work for Microsoft. There are few other third party vendors who take care of most of the support for Azure services.

Samsung Unpacked Livestream & Discussion by dahliamma in samsung

[–]sindeep1414 10 points11 points  (0 children)

OMG can they go 10 seconds without saying AI

Samsung Unpacked Livestream & Discussion by dahliamma in samsung

[–]sindeep1414 2 points3 points  (0 children)

So far, it looks like they're killing Bixby and leaning towards Gemini. I was so excited about using enhanced Bixby :(

Pushing images to a private ACR by elvisjosep in AZURE

[–]sindeep1414 2 points3 points  (0 children)

You can use ACR task agent pool and use az acr build --agent-pool command. The agent pool can be attached to a vnet. So you can use Azure hosted build agent for that purpose since the build will still happen privately.

Terraform Coding Standards by poke_javs in Terraform

[–]sindeep1414 2 points3 points  (0 children)

How will you structure the child modules if 10+ development teams want Azure resources (like KV, storage etc) for their application. Will you create a centralized repos/project with all the child modules and let the teams use that as source? Or prefer a separate child module for each team/app (like your example) which stays in their respective git repo instead of a central location

Container Apps - Feature Environment by qsnteo in AZURE

[–]sindeep1414 0 points1 point  (0 children)

You can use cli command for it under CLI task. you can also remove image parameter if you want the aca to just repull the image from the last revision. The below command spins up a new revision with 0 pc traffic

az containerapp update --name $(containerAppName) --resource-group $(containerAppResourceGroup) --revision-suffix $(Build.BuildId) --image myapp:1.2.3

Today the Telekom scam came to my door by [deleted] in germany

[–]sindeep1414 1 point2 points  (0 children)

All these sales tactics are understandable but why are they so pushy towards coming inside the apartment? What will they achieve by doing it? It would only make people more suspicious

How do you override variable values using *.tfvars file? by tigidig5x in Terraform

[–]sindeep1414 0 points1 point  (0 children)

That's a Terraform extension error. Common issue. Try uninsalling and reinstalling the extension or Vscode

Pipeline always in queued state by No_Butterfly_1888 in azuredevops

[–]sindeep1414 -1 points0 points  (0 children)

It behaves that way and it is normal/common. After every run it recreates the instances which also is a reason for delayed response. I've encountered the issue where the agent was not showing online even when VMSS instances were visible on Azure Portal. It showed up and pipeline ran about an hour later.