pub const TERRAFORM_STANDARDS: &str = r#"
## Terraform Best Practices
### File Structure
- `main.tf` - Main resources
- `variables.tf` - Input variables with descriptions and types
- `outputs.tf` - Output values
- `providers.tf` - Provider configuration with version constraints
- `versions.tf` - Terraform version constraints
- `terraform.tfvars.example` - Example variable values
### Security
- Never hardcode credentials
- Use IAM roles where possible
- Enable encryption at rest
- Use security groups with minimal access
- Tag all resources for cost tracking
### State Management
- Use remote state (S3, GCS, Azure Blob)
- Enable state locking
- Never commit state files
"#;Expand description
Get prompt for Terraform-specific generation