@hadooppei/hwcode 1.0.5 → 1.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -176,6 +176,7 @@ export async function collectCredentials(vendor: CloudVendorId, root: string, ct
|
|
|
176
176
|
|
|
177
177
|
export function activationPrompt(state: WorkflowState): string {
|
|
178
178
|
const details = cloudDetails(state)!;
|
|
179
|
+
const provider = getCloudProvider(details.vendor);
|
|
179
180
|
const guidance = details.templateGuidance
|
|
180
181
|
? `\n\nReusable template guidance (${details.sourceTemplate?.name ?? "saved template"}):\n${details.templateGuidance}`
|
|
181
182
|
: "";
|
|
@@ -185,7 +186,7 @@ export function activationPrompt(state: WorkflowState): string {
|
|
|
185
186
|
Locked project root: ${state.root}
|
|
186
187
|
Task artifact workspace: ${cloudArtifactDirectory(state)}
|
|
187
188
|
Cloud provider: ${getCloudProvider(details.vendor).label}
|
|
188
|
-
Terraform Runner: ${runner}
|
|
189
|
+
Terraform Runner: ${runner}(Note: Runner is only for Terraform; regular discovery and CLI queries run locally via ${provider.cli})
|
|
189
190
|
Deploy current project: ${details.deployCurrentProject ? "yes" : "no"}
|
|
190
191
|
User objective:\n${details.request}${guidance}
|
|
191
192
|
|