23 lines
829 B
Markdown
23 lines
829 B
Markdown
# gcp_solution_architecture_agent
|
||
|
||
A four-phase Google Cloud solution-architecture workflow:
|
||
|
||
1. Discover requirements without selecting products.
|
||
2. Select products and produce architecture artifacts.
|
||
3. Validate Terraform and architecture artifacts without provisioning.
|
||
4. Package and verify the guide.
|
||
|
||
The repository also includes the verification and publication contracts for manifest steps 4–7. See [`solution-architecture-guide.md`](solution-architecture-guide.md).
|
||
|
||
## Commands
|
||
|
||
```bash
|
||
python -m pytest
|
||
terraform -chdir=terraform fmt -check -recursive
|
||
terraform -chdir=terraform init -backend=false
|
||
terraform -chdir=terraform validate
|
||
python scripts/validate_artifacts.py
|
||
```
|
||
|
||
The Terraform checks are intentionally plan-oriented and do not apply resources. A real plan requires Google credentials and a project ID.
|