You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 4, 2025. It is now read-only.
Copy file name to clipboardExpand all lines: src/Areas/Deploy/Commands/PlanGetCommand.cs
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -26,7 +26,7 @@ public sealed class PlanGetCommand(ILogger<PlanGetCommand> logger)
26
26
27
27
publicoverridestringDescription=>
28
28
"""
29
-
Entry point to help the agent deploy a service to the cloud. Agent should read its output and generate a deploy plan in '.codetocloud/plan.copilotmd' for execution steps, recommended azure services based on the information agent detected from project. Before calling this tool, please scan this workspace to detect the services to deploy and their dependent services.
29
+
Entry point to help the agent deploy a service to the cloud. Agent should read its output and generate a deploy plan in '.azure/plan.copilotmd' for execution steps, recommended azure services based on the information agent detected from project. Before calling this tool, please scan this workspace to detect the services to deploy and their dependent services.
"The deployment tool to use. Valid values: azd, azcli")
217
+
"The deployment tool to use. Valid values: AZD, AzCli")
218
218
{
219
219
IsRequired=true
220
220
};
@@ -319,7 +319,7 @@ public static class AppTopologySchema
319
319
["name"]=newJsonObject
320
320
{
321
321
["type"]="string",
322
-
["description"]="The name of the dependent service. Can be arbitary, or must reference another service in the services array if referencing azureappservice, azurecontainerapp, azurestaticwebapps, or azurefunctions."
322
+
["description"]="The name of the dependent service. Can be arbitrary, or must reference another service in the services array if referencing azureappservice, azurecontainerapp, azurestaticwebapps, or azurefunctions."
Copy file name to clipboardExpand all lines: src/Areas/Deploy/Services/Util/DeploymentPlanTemplateUtil.cs
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -40,7 +40,7 @@ 2. Build and Deploy the Application
40
40
1. Verify pods are running and services are exposed
41
41
""";
42
42
43
-
varsummary="Summarize the deployment result and save to '.codetocloud/summary.copilotmd'. It should list all changes deployment files and brief description of each file. Then have a diagram showing the provisioned azure resource.";
43
+
varsummary="Summarize the deployment result and save to '.azure/summary.copilotmd'. It should list all changes deployment files and brief description of each file. Then have a diagram showing the provisioned azure resource.";
44
44
varsteps=newList<string>();
45
45
46
46
if(provisioningTool.ToLowerInvariant()=="azd")
@@ -49,7 +49,7 @@ 1. Verify pods are running and services are exposed
49
49
1. Provision Azure Infrastructure
50
50
1. Based on following required Azure resources in plan, get the infra code rules from the tool infra-code-rules-get
51
51
2. Generate IaC ({azdIacOptions} files) for required azure resources based on the plan.
52
-
3. Precheck: use get_errors tool to check generated Bicep grammar errors. Fix the errors if exist.
52
+
3. Pre-check: use get_errors tool to check generated Bicep grammar errors. Fix the errors if exist.
53
53
4. Run the AZD command `azd provision` to provision the resources and confirm each resource is created or already exists.
54
54
5. Check the deployment output to ensure the resources are provisioned successfully.
55
55
""");
@@ -71,7 +71,7 @@ 5. Check the deployment output to ensure the resources are provisioned successfu
@@ -106,7 +106,7 @@ 1. Verify command output to ensure the application is deployed successfully
106
106
:$"Azure Deployment Plan for {projectName} Project";
107
107
108
108
return$$"""
109
-
{Agent should fill in and polish the markdown template below to generate a deployment plan for the project. Then save it to '.codetocloud/plan.copilotmd' file.}
109
+
{Agent should fill in and polish the markdown template below to generate a deployment plan for the project. Then save it to '.azure/plan.copilotmd' file.}
llmResponse.Add("- Ensure an User-Assigned Managed Identity (UAMI) exists.");
9
+
llmResponse.Add("- Ensure an User-Assigned Managed Identity exists.");
10
10
llmResponse.Add("- Resource Group resource (if exists) must have tag \"azd-env-name\" = environmentName. Apply this tag to resource group resource ONLY.");
11
11
llmResponse.Add($"- Expected parameters in {iacType} parameters: environmentName='${{AZURE_ENV_NAME}}', location='${{AZURE_LOCATION}}'. resourceGroupName='rg-${{AZURE_ENV_NAME}}' is required if scope is subscription.");
12
12
llmResponse.Add("- All container apps, app services, function apps, static web apps (and nothing else) must have tag \"azd-service-name\" matching the service name in azure.yaml.");
@@ -19,7 +19,7 @@ public static void PopulateAZDPrompts(string iacType, string[] resourceTypes, Li
varreturnString=$"- MANDATORY: Add a {roleAssignmentResourceName} resource to assign the {roleName} ({roleId}) role to the user-assigned managed identity";
0 commit comments