Matt Ellis
Matt Ellis
> Ideally, we use github labels and query based on that label FWIW - I would be a little hesitant to build something in the CLI itself that uses the...
I think we'll have to end up using https://github.com/AzureAD/microsoft-authentication-library-for-go instead of identity, since we'll need to maintain a persistent token cache. We also need to ensure this cache is properly...
[Here's](https://github.com/ellismg/azure-dev/tree/ellismg/add-auth) my work in progress branch. I'm rebasing this frequently so I wouldn't encourage anyone to branch off the top of it, but you can start to get a sense...
Let's also consider modifying `runAzCommand` so that it forces json output (instead of requiring us to pass `--output json` for each command. For the few cases where we run `az`...
@rajeshkamal5050 and I chatted a bit about his feedback today in our 1:1. The crux of the problem here is that some of our operations (like `infra create`) can take...
After a great discussion with @philliphoff and @weikanglim yesterday, I made some changes to the PR. We decided that we should write the progress messages to a different stream than...
The mapping from RP types to friendly names is here: https://github.com/Azure/azure-dev/blob/e5acbfe8bcfe001abbbf9457e5d660dc1a727132/cli/azd/pkg/infra/azure_resource_types.go#L31-L63 If we don't return a value from this function, we don't display something in the output: https://github.com/Azure/azure-dev/blob/e5acbfe8bcfe001abbbf9457e5d660dc1a727132/cli/azd/pkg/infra/provisioning/provisioning_progress_display.go#L117-L118
I think that @vhvb1989 raises a really good point here - there's nothing that intrinsically ties the name of your environment to any infrastructure - that's something that happens by...
> I've sort of being thinking about the azd environment as a namespace which all of my Azure resources fall within. Would you say that's accurate? I guess it depends...
I've started to collect some thoughts on this issue in a design note in #196 which tries to describe how environments work today and proposes a new design. @weikanglim -...