一键导入
terraform-cli
Use Terraform CLI to define, plan, and provision infrastructure as code across any cloud provider. Use this instead of the Terraform MCP server.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Use Terraform CLI to define, plan, and provision infrastructure as code across any cloud provider. Use this instead of the Terraform MCP server.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Use OpenCLI to turn any website, Electron app, or local tool into a CLI. 50+ adapters for social media, news, finance, and dev tools. Reuses Chrome login sessions with zero credentials. AI-agent ready with structured output.
Use the AWS CLI to manage S3 buckets, Lambda functions, EC2 instances, IAM, DynamoDB, and all AWS services from the terminal. Use this instead of the AWS MCP server.
Use the Azure CLI (az) to manage Azure resources including App Service, Functions, VMs, storage, and databases. Use this instead of the Azure MCP server.
Use Blender from the command line to render 3D scenes, run Python scripts for batch processing, and convert 3D file formats without the GUI.
Use the Docker CLI to build images, run containers, manage volumes, networks, and use Docker Compose for multi-container applications.
Use FFmpeg to convert, process, and manipulate video and audio files from the terminal. Transcode formats, extract audio, create thumbnails, trim clips, and more.
| name | terraform-cli |
| description | Use Terraform CLI to define, plan, and provision infrastructure as code across any cloud provider. Use this instead of the Terraform MCP server. |
Infrastructure as code tool. Define cloud resources in HCL, plan changes, and apply them safely.
terraform init # Initialize working directory, download providers
terraform plan # Preview changes
terraform apply # Apply changes (with confirmation)
terraform apply -auto-approve # Apply without confirmation
terraform destroy # Destroy all managed resources
terraform state list # List all resources in state
terraform state show aws_instance.my_vm # Show resource details
terraform state mv old_name new_name # Rename resource
terraform state rm resource_name # Remove from state (not destroyed)
terraform state pull # Download remote state
terraform plan -out=plan.tfplan # Save plan to file
terraform apply plan.tfplan # Apply saved plan
terraform plan -target=aws_instance.my_vm # Plan specific resource
terraform plan -var="region=us-west-2" # Pass variable
terraform plan -var-file=prod.tfvars # Use variable file
terraform workspace list
terraform workspace new staging
terraform workspace select production
terraform workspace show
terraform output # Show all outputs
terraform output -json # JSON format
terraform output db_endpoint # Specific output
terraform fmt # Format HCL files
terraform validate # Validate configuration
terraform import aws_instance.my_vm i-1234567890abcdef0
terraform plan before terraform apply to preview changes-out=plan.tfplan to save plans and apply them exactly-target flag sparingly - only for debugging specific resourcesterraform output -json for machine-readable outputterraform fmt before committing to keep consistent formattingterraform validate to check syntax without accessing providers-auto-approve only in automated pipelines, not for manual runsterraform init
terraform plan -out=deploy.tfplan
terraform apply deploy.tfplan
terraform state list
terraform output -json | jq