Custom Infrastructure Design and Deployment Skill
Overview
This skill provides a prescriptive, production-grade workflow for the entire
infrastructure lifecycle on Google Cloud Platform (GCP). It replaces the
automated, opaque-box GAD design_infra tool with an agent-controlled design
and validation loop utilizing modular Terraform and local CLI validation,
followed by a shifted-left best practices plan scan prior to synchronization
with the Application Design Center (ADC) registry for deployment and lifecycle
management.
Always maintain the persona of a Principal Cloud Architect. Keep the local
Terraform configuration as the source of truth, and ensure the design is fully
compliant with best practices before importing it into the cloud registry.
Index
- Pre-requisites: Setup & Confirmation
- Phase 1: Local Infrastructure Design & Validation
- Phase 2: Shifted-Left Best Practices Assessment & Iterative Remediation
- Phase 3: Import IaC to Application Design Center
- Phase 4: Application Deployment & Monitoring
- Phase 5: Troubleshoot Deployment Failures
- Phase 6: Verification & E2E Testing
Pre-requisites: Setup & Confirmation
Before executing Phase 1, you must perform the following setup steps:
Confirm Target Project & Location:
Explicitly ask the user to confirm the target GCP project ID and
location (region).
If the user does not specify a location, use us-central1 as the
default.
Verify that your local environment has the active project set:
gcloud config set project <project_id>
Phase 1: Local Infrastructure Design & Validation
Goal: Transform user requirements and codebase characteristics into a 100%
validated, secure, and compile-ready Terraform configuration locally.
Invoke the design Skill: Call and execute the design skill (defined
in design)
for the user's prompt.
- The
design skill will autonomously perform the Codebase Analysis,
query the catalog registry, planning, HCL generation, and local CLI
validation loop (terraform init, validate, plan) in a dedicated
scratch directory.
Locate Validated HCL: Identify the scratch directory where the design
skill saved the validated, compile-ready Terraform files (e.g.,
scratch/tf_validate_<session_id>/).
Verify Handover (MANDATORY): Ensure that the local validation loop in
the design skill completed successfully with a clean plan before
proceeding. Meticulously inspect the HCL to verify:
- Secret-Safe Policy: Confirm that no plaintext credentials,
passwords, or hardcoded secrets are written in
terraform.tfvars or HCL
resource blocks. All sensitive inputs must be wired through GCP Secret
Manager.
- State Isolation Policy: Confirm that there is no remote backend
block (e.g.,
backend "gcs" {}) in the HCL files. State must remain
local in the scratch folder during validation, allowing ADC to handle
the remote state registry upon import.
- Remediation: If any violations are found, correct them in the HCL,
re-run local validation, and verify again. Do not proceed with
unvalidated or insecure code.
Export Terraform Plan to JSON (MANDATORY): In the scratch directory, run
the following commands to generate a binary plan and convert it into a clean
JSON representation:
terraform plan -out=tfplan && terraform show -json tfplan > tfplan.json
Verify that the tfplan.json file is successfully written in your scratch
directory.
Phase 2: Shifted-Left Best Practices Assessment & Iterative Remediation
Goal: Validate the local plan's alignment with security, cost, and
reliability benchmarks BEFORE importing it into the cloud registry, using the
native ADC plan assessment API.
Discover Space ID (MANDATORY): Before running the assessment or creating
templates, you must dynamically discover the active ADC Space ID in your
target location:
List Spaces: Run the command:
gcloud design-center spaces list --project=<project_id> --location=<location>
Select Space: Parse the output to identify the active space (e.g.,
test-deploy or googlespace). If multiple spaces exist, ask the user
to confirm. If no space exists, ask the user or create one:
gcloud design-center spaces create <space_id> --project=<project_id> --location=<location>
Execute Plan Assessment via gcloud: Run the plan-based assessment using
the discovered Space ID and your exported tfplan.json file. Execute the
command directly in your terminal:
gcloud design-center spaces generate-terraform-assessment-report <space_id> \
--location=<location> \
--project=<project_id> \
--terraform-plan="<scratch_directory_path>/tfplan.json" \
--format=json
Analyze Findings: Present all findings to the user in a clean tabular
format, detailing specific violations, resource scopes, and associated
severity levels.
Local Remediation Loop:
Do not attempt to import or commit insecure code.
Edit your local HCL files in the scratch directory to fix the
reported violations (e.g., adding encryption keys, enabling OS Login, or
restricting IAM scopes).
Re-run Phase 1 local validation and plan export:
terraform validate && terraform plan -out=tfplan && terraform show -json tfplan > tfplan.json
Re-run the plan assessment command shown in step 2.
Exit Criteria:
- All high/critical findings resolved, or acceptable trade-offs
documented.
- Maximum of three (3) iterative attempts reached. Once clean or
acceptable, proceed to Phase 3.
Phase 3: Import IaC to Application Design Center
Goal: Synchronize the fully validated and best-practice-compliant local HCL
configuration with the ADC cloud registry to establish the deployable template
resource.
Verify or Create the Application Template (MANDATORY): Before importing
the HCL, you must ensure the parent Application Template resource exists
in the discovered ADC space.
Check Existence: Run gcloud design-center spaces application-templates describe <template_id> --space=<space_id> --project=<project_id> --location=<location> to check if the template
exists.
Create if Missing: If the describe command returns a NOT_FOUND
error, create the template resource first by running:
gcloud design-center spaces application-templates create <template_id> --space=<space_id> --project=<project_id> --location=<location> --display-name="<Name>" --description="<Description>"
Strict HCL Parser Constraints (CRITICAL): Before calling the import
operation, ensure your local HCL complies with the ADC registry's strict
ingestion rules:
- Pure Module Policy (No Resource Blocks): The ADC parser strictly
prohibits any
resource blocks inside the imported HCL. Only
module, variable, output, and provider blocks are allowed. If a
resource is required (e.g. Private Service Access peering) but no
standalone module is registered for it in the catalog, you MUST check if
it is supported as a built-in configuration option inside an existing
registered module (e.g. setting private_service_access_config inside
module "vpc").
- Strict String Typing: The ADC parser does not perform implicit type
coercion from boolean to string. For example, subnet private access must
be declared as a literal string:
subnet_private_access = "true", NOT
as a boolean true.
- No Terraform Block: The parser strictly prohibits the
terraform {}
version constraint block. Omit it entirely from providers.tf or
main.tf.
Import to ADC Template: Once the template resource is confirmed to exist
and the HCL is validated against the above constraints, invoke the hosted
application_design_center:manage_application_template MCP tool with the
APPLICATION_TEMPLATE_OPERATION_IMPORT_IAC operation:
Capture Template URI: Upon success, this establishes the template
resource in your space. Construct the applicationTemplateUri using the
pattern:
projects/{project}/locations/{location}/spaces/{spaceId}/applicationTemplates/{applicationTemplateId}
Phase 4: Application Deployment & Monitoring
Goal: Deploy the validated, best-practice-compliant application template to
the GCP environment.
- Deploy Application: Invoke the hosted
application_design_center:manage_application MCP tool with the
APPLICATION_OPERATION_DEPLOY operation:
- Arguments:
project: Target project ID.
location: Target deployment location.
spaceId: Target space ID.
applicationId: A unique ID for the deployed application instance.
applicationTemplateUri: The URI established in Phase 3.
serviceAccount: The deployment service account.
- Resilience & Retries (MANDATORY):
- If the
DEPLOY operation fails with transient network or gateway
errors (e.g., 502, 504), apply exponential backoff with
jitter before retrying.
- If the deployment LRO times out or fails with a state conflict,
verify the application status using
gcloud design-center spaces applications describe to confirm its status before retrying the
deploy call, avoiding concurrent conflicting deployments.
- Active LRO Monitoring:
- The tool returns a Long-Running Operation (LRO). Inform the user that
the deployment has started.
- Do not sleep during deployment status polling. Poll the LRO actively
every 30–60 seconds until
done: true using the command gcloud design-center operations describe <operation_name>.
- Handle Results:
- Success: If
done is true and there is no error field, proceed
to Phase 6.
- Failure: If an
error field is present, analyze the error type and
proceed to Phase 5.
Phase 5: Troubleshoot Deployment Failures
Goal: Diagnose and remediate deployment failures iteratively using the
specialized troubleshooting skill and established cloud resolution patterns.
Iterative Cloud Resolution Patterns (CRITICAL): If the deployment fails
with a REVISION_FAILED or TERRAFORM error, check for these common
resource conflicts:
Service Account 409 Conflict (alreadyExists): If the deployment
fails because a service account generated by the module (e.g.
frontend-service-us-central-sa) already exists in the project,
remediate the local HCL by disabling service account creation and
referencing the existing one:
create_service_account = false
service_account = "<existing_service_account_email>"
Container Image 404 NotFound: If the deployment fails because a
container image is not found, confirm that the image exists in your
registry. For testing or hello-world deployments, leverage the official
public Google hello-world image:
us-docker.pkg.dev/cloudrun/container/hello
Delegate to the Troubleshooting Skill: If a deployment failure occurs
and does not match the above patterns, invoke and execute the specialized
infra-deployment-debugging skill (located in
infra-deployment-debugging).
Select the Troubleshooting Context:
- For Local Validation Errors (Phase 1/2): Follow Case B: Raw
Terraform Deployment instructions in the troubleshooting skill to
isolate syntax, compilation, and plan-time validation errors.
- For Cloud Deployment Failures (Phase 4): Follow Case A: ADC
Application Deployment instructions in the troubleshooting skill to
analyze LRO errors, retrieve service logs, and diagnose cloud
environment issues.
Apply Local-First Remediation:
Follow the troubleshooting skill's remediation guides to formulate a
fix.
MANDATORY: Apply the fix directly to your local HCL files in the
scratch directory, re-run local validation, re-import the HCL, and
trigger a new deployment.
Re-run Phase 1 local validation and plan export:
terraform validate && terraform plan -out=tfplan && terraform show -json tfplan > tfplan.json
Re-run the plan assessment (Phase 2) to ensure no new violations are
introduced.
Re-import the corrected HCL to ADC using
APPLICATION_TEMPLATE_OPERATION_IMPORT_IAC.
Trigger a new deployment using APPLICATION_OPERATION_DEPLOY.
Iteration Threshold: Repeat the troubleshooting, validation, import, and
redeployment cycle up to five (5) times. If it still fails, report the full
history and diagnostics to the user.
Phase 6: Verification & E2E Testing
Goal: Confirm that the deployed services are healthy and fully functional.
- Retrieve Deployed Resources: Invoke the hosted
application_design_center:manage_application MCP tool with the
APPLICATION_OPERATION_GET operation to retrieve the resource details,
public endpoints, and output parameters.
- Health Check: Verify that all services are using the correct container
image URLs and that their runtime status is healthy.
- E2E Validation: Conduct a simple demo test (e.g., checking public HTTP
endpoints or triggering a dry-run transaction) to ensure E2E functionality.
Present the results and public URLs to the user to conclude the task.
Reporting Issues
Report bugs or improvements for this skill at Google Skills Issues.
1---2name: design-deploy3description: Processes GCP infrastructure design and deployment workflows. Use when: - Designing GCP infrastructure with Terraform. - Validating local HCL. - Performing best-practice plan scans. - Importing templates to Application Design Center (ADC). - Deploying templates. - Troubleshooting deployment failures. Don't use for non-GCP cloud providers, or general Terraform coding outside the ADC context.4license: Apache-2.05---67# Custom Infrastructure Design and Deployment Skill89## Overview1011This skill provides a prescriptive, production-grade workflow for the entire12infrastructure lifecycle on Google Cloud Platform (GCP). It replaces the13automated, opaque-box GAD `design_infra` tool with an **agent-controlled design14and validation loop** utilizing modular Terraform and local CLI validation,15followed by a **shifted-left best practices plan scan** prior to synchronization16with the Application Design Center (ADC) registry for deployment and lifecycle17management.1819Always maintain the persona of a Principal Cloud Architect. Keep the local20Terraform configuration as the source of truth, and ensure the design is fully21compliant with best practices before importing it into the cloud registry.2223--------------------------------------------------------------------------------2425## Index26271. [Pre-requisites: Setup & Confirmation](#pre-requisites-setup-confirmation)282. [Phase 1: Local Infrastructure Design & Validation](#phase-1-local-infrastructure-design-validation)293. [Phase 2: Shifted-Left Best Practices Assessment & Iterative Remediation](#phase-2-shifted-left-best-practices-assessment-iterative-remediation)304. [Phase 3: Import IaC to Application Design Center](#phase-3-import-iac-to-application-design-center)315. [Phase 4: Application Deployment & Monitoring](#phase-4-application-deployment-monitoring)326. [Phase 5: Troubleshoot Deployment Failures](#phase-5-troubleshoot-deployment-failures)337. [Phase 6: Verification & E2E Testing](#phase-6-verification-e2e-testing)3435--------------------------------------------------------------------------------3637## Pre-requisites: Setup & Confirmation3839Before executing Phase 1, you **must** perform the following setup steps:40411. **Confirm Target Project & Location**:4243 * Explicitly ask the user to confirm the target GCP **project ID** and44 **location** (region).45 * If the user does not specify a location, use **`us-central1`** as the46 default.47 * Verify that your local environment has the active project set:4849 ```bash50 gcloud config set project <project_id>51 ```5253--------------------------------------------------------------------------------5455## Phase 1: Local Infrastructure Design & Validation5657**Goal**: Transform user requirements and codebase characteristics into a 100%58validated, secure, and compile-ready Terraform configuration locally.59601. **Invoke the `design` Skill**: Call and execute the `design` skill (defined61 in [design](references/design/SKILL.md))62 for the user's prompt.63 * The `design` skill will autonomously perform the Codebase Analysis,64 query the catalog registry, planning, HCL generation, and local CLI65 validation loop (`terraform init`, `validate`, `plan`) in a dedicated66 scratch directory.672. **Locate Validated HCL**: Identify the scratch directory where the `design`68 skill saved the validated, compile-ready Terraform files (e.g.,69 `scratch/tf_validate_<session_id>/`).703. **Verify Handover (MANDATORY)**: Ensure that the local validation loop in71 the `design` skill completed successfully with a clean plan before72 proceeding. Meticulously inspect the HCL to verify:73 * **Secret-Safe Policy**: Confirm that no plaintext credentials,74 passwords, or hardcoded secrets are written in `terraform.tfvars` or HCL75 resource blocks. All sensitive inputs must be wired through GCP Secret76 Manager.77 * **State Isolation Policy**: Confirm that there is no remote backend78 block (e.g., `backend "gcs" {}`) in the HCL files. State must remain79 local in the scratch folder during validation, allowing ADC to handle80 the remote state registry upon import.81 * *Remediation*: If any violations are found, correct them in the HCL,82 re-run local validation, and verify again. Do not proceed with83 unvalidated or insecure code.844. **Export Terraform Plan to JSON (MANDATORY)**: In the scratch directory, run85 the following commands to generate a binary plan and convert it into a clean86 JSON representation:8788 ```bash89 terraform plan -out=tfplan && terraform show -json tfplan > tfplan.json90 ```9192 Verify that the `tfplan.json` file is successfully written in your scratch93 directory.9495--------------------------------------------------------------------------------9697## Phase 2: Shifted-Left Best Practices Assessment & Iterative Remediation9899**Goal**: Validate the local plan's alignment with security, cost, and100reliability benchmarks BEFORE importing it into the cloud registry, using the101native ADC plan assessment API.1021031. **Discover Space ID (MANDATORY)**: Before running the assessment or creating104 templates, you **must** dynamically discover the active ADC Space ID in your105 target location:106107 * **List Spaces**: Run the command:108109 ```bash110 gcloud design-center spaces list --project=<project_id> --location=<location>111 ```112113 * **Select Space**: Parse the output to identify the active space (e.g.,114 `test-deploy` or `googlespace`). If multiple spaces exist, ask the user115 to confirm. If no space exists, ask the user or create one:116117 ```bash118 gcloud design-center spaces create <space_id> --project=<project_id> --location=<location>119 ```1201212. **Execute Plan Assessment via gcloud**: Run the plan-based assessment using122 the discovered Space ID and your exported `tfplan.json` file. Execute the123 command directly in your terminal:124125 ```bash126 gcloud design-center spaces generate-terraform-assessment-report <space_id> \127 --location=<location> \128 --project=<project_id> \129 --terraform-plan="<scratch_directory_path>/tfplan.json" \130 --format=json131 ```1321333. **Analyze Findings**: Present all findings to the user in a clean tabular134 format, detailing specific violations, resource scopes, and associated135 severity levels.1361374. **Local Remediation Loop**:138139 * **Do not** attempt to import or commit insecure code.140 * Edit your **local HCL files** in the scratch directory to fix the141 reported violations (e.g., adding encryption keys, enabling OS Login, or142 restricting IAM scopes).143 * Re-run Phase 1 local validation and plan export:144145 ```bash146 terraform validate && terraform plan -out=tfplan && terraform show -json tfplan > tfplan.json147 ```148149 * Re-run the plan assessment command shown in step 2.1501515. **Exit Criteria**:152153 * All high/critical findings resolved, or acceptable trade-offs154 documented.155 * Maximum of three (3) iterative attempts reached. Once clean or156 acceptable, proceed to Phase 3.157158--------------------------------------------------------------------------------159160## Phase 3: Import IaC to Application Design Center161162**Goal**: Synchronize the fully validated and best-practice-compliant local HCL163configuration with the ADC cloud registry to establish the deployable template164resource.1651661. **Verify or Create the Application Template (MANDATORY)**: Before importing167 the HCL, you **must** ensure the parent Application Template resource exists168 in the discovered ADC space.169170 * **Check Existence**: Run `gcloud design-center spaces171 application-templates describe <template_id> --space=<space_id>172 --project=<project_id> --location=<location>` to check if the template173 exists.174 * **Create if Missing**: If the describe command returns a `NOT_FOUND`175 error, create the template resource first by running:176177 ```bash178 gcloud design-center spaces application-templates create <template_id> --space=<space_id> --project=<project_id> --location=<location> --display-name="<Name>" --description="<Description>"179 ```1801812. **Strict HCL Parser Constraints (CRITICAL):** Before calling the import182 operation, ensure your local HCL complies with the ADC registry's strict183 ingestion rules:184185 * **Pure Module Policy (No Resource Blocks):** The ADC parser strictly186 **prohibits any `resource` blocks** inside the imported HCL. Only187 `module`, `variable`, `output`, and `provider` blocks are allowed. If a188 resource is required (e.g. Private Service Access peering) but no189 standalone module is registered for it in the catalog, you MUST check if190 it is supported as a built-in configuration option inside an existing191 registered module (e.g. setting `private_service_access_config` inside192 `module "vpc"`).193 * **Strict String Typing:** The ADC parser does not perform implicit type194 coercion from boolean to string. For example, subnet private access must195 be declared as a literal string: `subnet_private_access = "true"`, NOT196 as a boolean `true`.197 * **No Terraform Block:** The parser strictly prohibits the `terraform {}`198 version constraint block. Omit it entirely from `providers.tf` or199 `main.tf`.2002013. **Import to ADC Template**: Once the template resource is confirmed to exist202 and the HCL is validated against the above constraints, invoke the hosted203 `application_design_center:manage_application_template` MCP tool with the204 `APPLICATION_TEMPLATE_OPERATION_IMPORT_IAC` operation:205206 * **Arguments**:207208 * `project`: The target project ID.209 * `location`: The GCP deployment region (e.g., `us-central1`).210 * `spaceId`: The discovered ADC space ID.211 * `applicationTemplateId`: A unique name for your application212 template.213 * `operation`: `APPLICATION_TEMPLATE_OPERATION_IMPORT_IAC`214 * `iacModule`: A structured object containing the files list:215216 ```json217 {218 "files": [219 { "name": "main.tf", "content": "<content of main.tf>" },220 { "name": "variables.tf", "content": "<content of variables.tf>" },221 { "name": "terraform.tfvars", "content": "<content of terraform.tfvars>" }222 ]223 }224 ```225226 * **Resilience & Retries (MANDATORY)**:227228 * If the `IMPORT_IAC` call fails due to a transient error (e.g., `502229 Bad Gateway`, `504 Gateway Timeout`, or `429 Rate Limit`), **do not230 immediately retry**.231 * Use **exponential backoff with jitter** (e.g., waiting 2s, 4s, 8s232 plus a random fraction of a second).233 * **Verify Revision before Retry**: If a timeout occurred, first call234 `gcloud alpha design-center spaces application-templates describe`235 to check if the import actually succeeded in the background. Only236 retry if the template was not updated.2372384. **Capture Template URI**: Upon success, this establishes the template239 resource in your space. Construct the `applicationTemplateUri` using the240 pattern:241 `projects/{project}/locations/{location}/spaces/{spaceId}/applicationTemplates/{applicationTemplateId}`242243--------------------------------------------------------------------------------244245## Phase 4: Application Deployment & Monitoring246247**Goal**: Deploy the validated, best-practice-compliant application template to248the GCP environment.2492501. **Deploy Application**: Invoke the hosted251 `application_design_center:manage_application` MCP tool with the252 `APPLICATION_OPERATION_DEPLOY` operation:253 * **Arguments**:254 * `project`: Target project ID.255 * `location`: Target deployment location.256 * `spaceId`: Target space ID.257 * `applicationId`: A unique ID for the deployed application instance.258 * `applicationTemplateUri`: The URI established in Phase 3.259 * `serviceAccount`: The deployment service account.260 * **Resilience & Retries (MANDATORY)**:261 * If the `DEPLOY` operation fails with transient network or gateway262 errors (e.g., `502`, `504`), apply **exponential backoff with263 jitter** before retrying.264 * If the deployment LRO times out or fails with a state conflict,265 verify the application status using `gcloud design-center spaces266 applications describe` to confirm its status before retrying the267 deploy call, avoiding concurrent conflicting deployments.2682. **Active LRO Monitoring**:269 * The tool returns a Long-Running Operation (LRO). Inform the user that270 the deployment has started.271 * **Do not sleep** during deployment status polling. Poll the LRO actively272 every 30–60 seconds until `done: true` using the command `gcloud273 design-center operations describe <operation_name>`.2743. **Handle Results**:275 * **Success**: If `done` is `true` and there is no `error` field, proceed276 to Phase 6.277 * **Failure**: If an `error` field is present, analyze the error type and278 proceed to Phase 5.279280--------------------------------------------------------------------------------281282## Phase 5: Troubleshoot Deployment Failures283284**Goal**: Diagnose and remediate deployment failures iteratively using the285specialized troubleshooting skill and established cloud resolution patterns.2862871. **Iterative Cloud Resolution Patterns (CRITICAL):** If the deployment fails288 with a `REVISION_FAILED` or `TERRAFORM` error, check for these common289 resource conflicts:290291 * **Service Account 409 Conflict (`alreadyExists`):** If the deployment292 fails because a service account generated by the module (e.g.293 `frontend-service-us-central-sa`) already exists in the project,294 remediate the local HCL by disabling service account creation and295 referencing the existing one:296297 ```hcl298 create_service_account = false299 service_account = "<existing_service_account_email>"300 ```301302 * **Container Image 404 NotFound:** If the deployment fails because a303 container image is not found, confirm that the image exists in your304 registry. For testing or hello-world deployments, leverage the official305 public Google hello-world image:306 `us-docker.pkg.dev/cloudrun/container/hello`3073082. **Delegate to the Troubleshooting Skill**: If a deployment failure occurs309 and does not match the above patterns, invoke and execute the specialized310 `infra-deployment-debugging` skill (located in311 [infra-deployment-debugging](references/infra-deployment-debugging/SKILL.md)).3123133. **Select the Troubleshooting Context**:314315 * **For Local Validation Errors (Phase 1/2)**: Follow **Case B: Raw316 Terraform Deployment** instructions in the troubleshooting skill to317 isolate syntax, compilation, and plan-time validation errors.318 * **For Cloud Deployment Failures (Phase 4)**: Follow **Case A: ADC319 Application Deployment** instructions in the troubleshooting skill to320 analyze LRO errors, retrieve service logs, and diagnose cloud321 environment issues.3223234. **Apply Local-First Remediation**:324325 * Follow the troubleshooting skill's remediation guides to formulate a326 fix.327 * **MANDATORY**: Apply the fix directly to your **local HCL files** in the328 scratch directory, re-run local validation, re-import the HCL, and329 trigger a new deployment.330 * Re-run Phase 1 local validation and plan export:331332 ```bash333 terraform validate && terraform plan -out=tfplan && terraform show -json tfplan > tfplan.json334 ```335336 * Re-run the plan assessment (Phase 2) to ensure no new violations are337 introduced.338339 * Re-import the corrected HCL to ADC using340 `APPLICATION_TEMPLATE_OPERATION_IMPORT_IAC`.341342 * Trigger a new deployment using `APPLICATION_OPERATION_DEPLOY`.3433445. **Iteration Threshold**: Repeat the troubleshooting, validation, import, and345 redeployment cycle up to five (5) times. If it still fails, report the full346 history and diagnostics to the user.347348--------------------------------------------------------------------------------349350## Phase 6: Verification & E2E Testing351352**Goal**: Confirm that the deployed services are healthy and fully functional.3533541. **Retrieve Deployed Resources**: Invoke the hosted355 `application_design_center:manage_application` MCP tool with the356 `APPLICATION_OPERATION_GET` operation to retrieve the resource details,357 public endpoints, and output parameters.3582. **Health Check**: Verify that all services are using the correct container359 image URLs and that their runtime status is healthy.3603. **E2E Validation**: Conduct a simple demo test (e.g., checking public HTTP361 endpoints or triggering a dry-run transaction) to ensure E2E functionality.362 Present the results and public URLs to the user to conclude the task.363364## Reporting Issues365366Report bugs or improvements for this skill at [Google Skills Issues](https://github.com/google/skills/issues).