원클릭으로
tf-examples-gen
Generate terraform HCL examples for a feature.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Generate terraform HCL examples for a feature.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Generate acceptance tests for a named Terraform resource or data source in the Couchbase Capella provider.
Diagnose and fix bugs in the Terraform Capella provider with acceptance tests.
generate terraform datasources based on openapi spec.
generate terraform resources based on openapi spec.
Generate terraform HCL examples for a feature.
| name | tf-examples-gen |
| description | Generate terraform HCL examples for a feature. |
Create this file which should have the terraform block and provider block.
terraform {
required_providers {
couchbase-capella = {
source = "couchbasecloud/couchbase-capella"
}
}
}
provider "couchbase-capella" {
authentication_token = var.auth_token
}
If main.tf exists and has terraform and provider blocks, skip this step.
Create a file to store the variables needed for the resource and datasource. All examples must have the two variables organization_id and auth_token as shown below.
variable "organization_id" {
description = "Capella Organization ID"
}
variable "auth_token" {
description = "Authentication API Key"
sensitive = true
}
If variables.tf exists and has the necessary variables, skip this step.
Create a file which has placeholder values for the variables. For variables like organization_id use "<organization_id>". For auth_token use ""
For other variables use values in ../couchbase-cloud/cmd/cp-open-api/specs/examples
If terraform.template.tfvars exists and has the necessary variables, skip this step.
Need a file named create_.tf. This file defines a resource for the specified feature.
resource "couchbase-capella_<feature>" "new_<feature>" {
// required and optional arguments for the resource
}
The resource should have required and optional arguments derived from the schema in internal/resources/_schema.go
If create_.tf exists and has the resource block, skip this step.
Look for a file in internal/datasources/ with the plural name of the feature. For example if the feature is Buckets then look for buckets.go in internal/datasources/.
If there is a datasource to list resources then create a list_.tf file it should look like this:
data "couchbase-capella_<feature_plural>" "list_<feature_plural>" {
// required and optional arguments for the datasource
}
The required and optional arguments should be derived from the schema in internal/datasources/<feature_plural>_schema.go
If there is no datasource to list resources then skip this step.
Look for a file in internal/datasources/ with the singular name of the feature. For example if the feature is Buckets then look for bucket.go in internal/datasources/
If there is a datasource to get a specific resource then create a get_.tf file it should look like this:
data "couchbase-capella_<feature>" "get_<feature>" {
// required and optional arguments for the datasource
}
The required and optional arguments should be derived from the schema in internal/datasources/_schema.go
If there is no datasource to get a specific resource then skip this step.
Fix errors until terraform validate passes.
Do not run terraform init as tests will run against a dev build.