15 lines
700 B
Markdown
15 lines
700 B
Markdown
# gcp_solution_architecture_agent
|
|
|
|
A four-phase Google Cloud solution-architecture workflow: requirements discovery, product selection and design, pre-deployment validation, and packaging/publication. The repository is intentionally a reference implementation: Terraform is parameterized and does not provision resources during validation.
|
|
|
|
## Quick start
|
|
|
|
```bash
|
|
terraform -chdir=terraform fmt -check -recursive
|
|
terraform -chdir=terraform init -backend=false
|
|
terraform -chdir=terraform validate
|
|
python3 scripts/validate_artifacts.py
|
|
```
|
|
|
|
Use `terraform.tfvars.example` as the starting point for a deployment-specific variable file. Review `solution-architecture-guide.md` before applying any plan.
|