mirror of
https://github.com/wshobson/agents.git
synced 2026-03-18 09:37:15 +00:00
feat: Add OCI awareness across agents and skills
Adds awareness of Oracle Cloud Infrastructure to any plugin that referenced at least two of the major cloud vendors already. Skills updated to include OCI services. Also updated some of the other cloud references. Signed-off-by: Avi Miller <me@dje.li>
This commit is contained in:
@@ -1,11 +1,11 @@
|
||||
---
|
||||
name: terraform-module-library
|
||||
description: Build reusable Terraform modules for AWS, Azure, and GCP infrastructure following infrastructure-as-code best practices. Use when creating infrastructure modules, standardizing cloud provisioning, or implementing reusable IaC components.
|
||||
description: Build reusable Terraform modules for AWS, Azure, GCP, and OCI infrastructure following infrastructure-as-code best practices. Use when creating infrastructure modules, standardizing cloud provisioning, or implementing reusable IaC components.
|
||||
---
|
||||
|
||||
# Terraform Module Library
|
||||
|
||||
Production-ready Terraform module patterns for AWS, Azure, and GCP infrastructure.
|
||||
Production-ready Terraform module patterns for AWS, Azure, GCP, and OCI infrastructure.
|
||||
|
||||
## Purpose
|
||||
|
||||
@@ -32,10 +32,14 @@ terraform-modules/
|
||||
│ ├── vnet/
|
||||
│ ├── aks/
|
||||
│ └── storage/
|
||||
└── gcp/
|
||||
├── vpc/
|
||||
├── gke/
|
||||
└── cloud-sql/
|
||||
├── gcp/
|
||||
│ ├── vpc/
|
||||
│ ├── gke/
|
||||
│ └── cloud-sql/
|
||||
└── oci/
|
||||
├── vcn/
|
||||
├── oke/
|
||||
└── object-storage/
|
||||
```
|
||||
|
||||
## Standard Module Pattern
|
||||
@@ -174,6 +178,8 @@ output "vpc_cidr_block" {
|
||||
9. **Test modules** with Terratest
|
||||
10. **Tag all resources** consistently
|
||||
|
||||
**Reference:** See `references/aws-modules.md` and `references/oci-modules.md`
|
||||
|
||||
## Module Composition
|
||||
|
||||
```hcl
|
||||
|
||||
Reference in New Issue
Block a user