-
Now I added some parameters to my aspire application ... in my case the stripe secret. When I first issued |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Look for the file config.json. It should be inside the folder .azure/{your-env-name}/config.json Then find the parameter in the infra.parameters section and delete it. (It should've been referencing a local vault, you don't need to worry about that). Then run These steps would keep your current deployment in Azure and just re-prompt for the parameter. Another option is to run |
Beta Was this translation helpful? Give feedback.
Look for the file config.json. It should be inside the folder .azure/{your-env-name}/config.json
Then find the parameter in the infra.parameters section and delete it. (It should've been referencing a local vault, you don't need to worry about that).
Then run
azd up
again and azd will ask you for the value again.These steps would keep your current deployment in Azure and just re-prompt for the parameter. Another option is to run
azd down
to delete your deployment from Azure, then runazd env new
to create a new local azd env and finallyazd up
.