在 Manus 中运行任何 Skill
一键导入
一键导入
一键在 Manus 中运行任何 Skill
开始使用terraform
星标3
分支0
更新时间2026年2月17日 15:54
Infrastructure as Code with Terraform
安装
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
SKILL.md
readonly菜单
Infrastructure as Code with Terraform
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Google Calendar — list, create, and manage events via gcal CLI
Manage HubSpot CRM — contacts, companies, deals, tickets
Manage Shopify store — products, orders, customers, inventory
Configure audio transcription and image/video understanding for channels
AWS CLI for S3, EC2, Lambda, CloudWatch, RDS, and ECS
Google Calendar — list, create, and manage events via gcal CLI
| name | terraform |
| description | Infrastructure as Code with Terraform |
| metadata | {"openclaw":{"always":false,"emoji":"🏗️"}} |
Infrastructure as Code management.
# Initialize (download providers)
terraform init
# Plan (preview changes)
terraform plan
terraform plan -out=plan.tfplan # save plan
# Apply
terraform apply
terraform apply plan.tfplan # apply saved plan
terraform apply -auto-approve # no confirmation
# Destroy
terraform destroy
terraform destroy -target=aws_instance.web # specific resource
# List resources in state
terraform state list
# Resource details
terraform state show <resource>
# Move resource (refactoring)
terraform state mv <old> <new>
# Remove from state (without destroying)
terraform state rm <resource>
# Pull/Push remote state
terraform state pull > state.json
terraform state push state.json
# View outputs
terraform output
terraform output -json
terraform output <name>
# Validate configuration
terraform validate
# Format code
terraform fmt
terraform fmt -recursive
terraform workspace list
terraform workspace new <name>
terraform workspace select <name>
terraform workspace delete <name>
# Import existing resource into state
terraform import <resource_type>.<name> <id>
terraform plan before apply-target to apply specific resourcesterraform fmt to keep code standardized