H

Skills Hashicorp

aws-ami-builder
hashicorp
Bangun Amazon Machine Images kustom dengan builder amazon-ebs milik Packer. Mengotomatiskan pembuatan AMI dari AMI sumber menggunakan templat HCL dengan provisioner untuk kustomisasi (skrip shell, unggahan file, manajemen konfigurasi). Mendukung distribusi AMI multi-region melalui ami_regions dan pemfilteran AMI sumber yang fleksibel berdasarkan nama, pemilik, dan tipe virtualisasi. Otentikasi melalui variabel lingkungan, file kredensial AWS, atau profil instance IAM; mencakup perintah validasi dan build untuk templat...
official
aws-ami-builder
hashicorp
Build Amazon Machine Images (AMIs) with Packer using the amazon-ebs builder. Use when creating custom AMIs for EC2 instances.
official
azure-image-builder
hashicorp
Build Azure managed images and Azure Compute Gallery images with Packer. Use when creating custom images for Azure VMs.
official
azure-image-builder
hashicorp
Bangun gambar terkelola Azure dan gambar Azure Compute Gallery dengan Packer. Gunakan saat membuat gambar kustom untuk VM Azure.
official
azure-verified-modules
hashicorp
Persyaratan sertifikasi dan praktik terbaik untuk modul Azure Terraform yang mencari kepatuhan AVM. Menerapkan batasan versi penyedia (azurerm >= 4.0, < 5.0; azapi >= 2.0, < 3.0) dan melarang referensi modul berbasis git demi sumber registry Terraform yang tetap. Mewajibkan penggunaan snake_case untuk semua pengidentifikasi, tipe variabel yang presisi, atribut output diskrit melalui pola lapisan anti-korupsi, dan lokal yang diurutkan secara alfabetis. Memerlukan variabel toggle fitur untuk sumber daya baru yang ditambahkan...
official
azure-verified-modules
hashicorp
Azure Verified Modules (AVM) requirements and best practices for developing certified Azure Terraform modules. Use when creating or reviewing Azure modules…
official
new-terraform-provider
hashicorp
Gunakan ini saat membuat kerangka penyedia Terraform baru dengan Plugin Framework: tata letak workspace, pengaturan modul go, main.go server penyedia, dan provider.go…
official
new-terraform-provider
hashicorp
Membuat kerangka penyedia Terraform baru menggunakan Plugin Framework. Menghasilkan ruang kerja modul Go baru dengan konvensi penamaan standar "terraform-provider-" dan menginisialisasi dependensi yang diperlukan. Menyediakan file main.go template yang mengikuti pola Plugin Framework HashiCorp, dengan penanda TODO untuk kustomisasi. Memvalidasi pengaturan dengan menjalankan perintah build dan test untuk memastikan penyedia dapat dikompilasi dan lolos pemeriksaan awal. Menangani manajemen ruang kerja dengan mengonfirmasi niat sebelum membuat yang baru...
official
provider-actions
hashicorp
Implementasikan aksi Terraform Provider menggunakan Plugin Framework. Gunakan saat mengembangkan operasi imperatif yang dieksekusi pada peristiwa siklus hidup (sebelum/sesudah…
official
provider-actions
hashicorp
Menerapkan tindakan penyedia Terraform imperatif pada peristiwa siklus hidup sumber daya menggunakan Plugin Framework. Mendukung pemicu siklus hidup sebelum/sesudah pembuatan dan sebelum/sesudah pembaruan (peristiwa penghancuran tidak tersedia di Terraform 1.14.0). Memerlukan definisi skema yang tepat dengan tipe kerangka yang benar, ElementType untuk koleksi, dan validator untuk validasi input. Termasuk pelaporan kemajuan, manajemen waktu tunggu, dan penanganan kesalahan yang komprehensif untuk operasi yang berjalan lama. Menerapkan polling dan...
official
provider-configuration
hashicorp
Implement Terraform provider configuration and authentication with the Plugin Framework: provider schema for credentials (Optional + Sensitive attributes),…
official
provider-docs
hashicorp
Membuat, memperbarui, dan meninjau dokumentasi penyedia Terraform untuk Terraform Registry menggunakan pola yang direkomendasikan HashiCorp, template tfplugindocs, dan skema…
official
provider-docs
hashicorp
Create, update, and review Terraform provider documentation for Terraform Registry using HashiCorp-recommended patterns, tfplugindocs templates, and schema…
official
provider-ephemeral-resources
hashicorp
Implement Terraform provider ephemeral resources with the Plugin Framework: the Open/Renew/Close lifecycle, ephemeral schema design, registration via…
official
provider-framework-migration
hashicorp
Migrate Terraform provider resources and data sources from Plugin SDKv2 to the Plugin Framework: muxing both plugins in one provider (terraform-plugin-mux,…
official
provider-resources
hashicorp
Implement Terraform Provider resources and data sources using the Plugin Framework: CRUD operations, schema design, plan modifiers and validators, not-found…
official
provider-resources
hashicorp
Mengimplementasikan sumber daya dan sumber data Terraform Provider dengan operasi CRUD lengkap serta pengujian. Mencakup pola implementasi sumber daya untuk SDKv2 dan Plugin Framework, termasuk desain skema, pengubah rencana, dan validator. Menyediakan contoh operasi CRUD lengkap (Buat, Baca, Perbarui, Hapus) dengan penanganan kesalahan, manajemen status, dan pola sumber daya tidak ditemukan. Mencakup pola pengujian penerimaan: pengujian dasar, pengujian hilang, fungsi pembantu, dan perintah eksekusi pengujian...
official
provider-test-patterns
hashicorp
Pola untuk menulis tes penerimaan menggunakan terraform-plugin-testing dengan Plugin Framework.
official
provider-test-patterns
hashicorp
Terraform provider acceptance test patterns using terraform-plugin-testing with the Plugin Framework. Covers test structure, TestCase/TestStep fields,…
official
push-to-registry
hashicorp
Dorong metadata build Packer ke registry HCP Packer untuk pelacakan siklus hidup gambar dan tata kelola. Mendaftarkan artefak build di HCP Packer dengan overhead minimal, hanya menyimpan metadata (bukan gambar sebenarnya) dan menambah waktu build kurang dari satu menit. Mendukung label tingkat bucket (diperbarui per build) dan label tingkat build yang tidak dapat diubah (git SHA, stempel waktu) untuk kontrol versi dan pelacakan kepatuhan. Terintegrasi dengan Terraform melalui sumber data hcp_packer_artifact untuk menanyakan dan menyebarkan gambar di seluruh...
official
push-to-registry
hashicorp
Push Packer build metadata to HCP Packer registry for tracking and managing image lifecycle. Use when integrating Packer builds with HCP Packer for version…
official
refactor-module
hashicorp
Pecah konfigurasi Terraform monolitik menjadi modul-modul yang dapat digunakan kembali dan terstruktur dengan baik, lengkap dengan kontrak yang jelas serta jalur migrasi. Menganalisis kode yang ada untuk mengidentifikasi kandidat refaktor, mengelompokkan sumber daya berdasarkan fungsi logis, dan menilai kompleksitas sebelum desain. Menghasilkan antarmuka modul dengan variabel bertipe, aturan validasi, dan output deskriptif yang mengikuti praktik terbaik HashiCorp. Menyediakan strategi migrasi state menggunakan blok moved (Terraform 1.1+) atau perintah manual terraform state mv...
official
refactor-module
hashicorp
Transform monolithic Terraform configurations into reusable, maintainable modules following HashiCorp's module design principles and community best practices.
official
run-acceptance-tests
hashicorp
We need to translate the given English text into Bahasa Indonesia. The text describes a skill for running acceptance tests for Terraform providers. We must preserve product names, protocol names, URLs, numbers, technical terms. The name "run-acceptance-tests" is not in the text, so we don't include it. We translate only the text inside <text>. No extra commentary. Let's translate sentence by sentence: "Execute and diagnose Go acceptance tests for Terraform providers with structured troubleshooting." -> "Jalankan dan diagnosa tes penerimaan Go untuk penyedia Terraform dengan pemecahan masalah terstruktur." "Run focused acceptance tests using go test -run=TestAccFeatureHappyPath with TF_ACC=1 environment variable" -> "Jalankan tes penerimaan terfokus menggunakan go test -run=TestAccFeatureHappyPath dengan variabel lingkungan TF_ACC=1" "Diagnose failures progressively: retry with -count=1 , enable verbose output with -v , activate debug logging via TF_LOG=debug , and persist Terraform workspace
official
run-acceptance-tests
hashicorp
Guide for running acceptance tests for a Terraform provider. Use this when asked to run an acceptance test or to run a test with the prefix `TestAcc`, when a…
official
terraform-policy
hashicorp
Write, test, or convert Terraform Policy files (.policy.hcl, .policytest.hcl, Sentinel→tfpolicy). Triggers: policy.hcl, policytest, convert sentinel, tfpolicy,…
official
terraform-search-import
hashicorp
Discover existing cloud resources using Terraform Search queries and bulk import them into Terraform management. Use when bringing unmanaged infrastructure…
official
terraform-search-import
hashicorp
Temukan sumber daya cloud yang ada menggunakan kueri Terraform Search dan impor secara massal ke dalam manajemen Terraform. Gunakan saat membawa infrastruktur yang tidak terkelola…
official
terraform-stacks
hashicorp
We need to translate the given text from English to Bahasa Indonesia. The text is a description of a skill related to terraform-stacks. We must preserve the name "terraform-stacks" if it appears, but it doesn't appear in the text. The text includes technical terms like Terraform Stack, .tfcomponent.hcl, .tfdeploy.hcl, for_each, OIDC, etc. We should keep those as is. Also preserve numbers like v1.13+. Translate the rest naturally. The text: "Comprehensive guide for creating, validating, and managing Terraform Stack configurations across environments. Covers Stack language fundamentals: component definitions (.tfcomponent.hcl), deployment instances (.tfdeploy.hcl), file organization, and required Terraform v1.13+ Supports multi-region and multi-environment deployments using for_each on providers and components, with automatic dependency inference between components Includes workload identity (OIDC) authentication, identity token..." Translate to Indonesian. Use formal but clear language. For "Terraform Stack" we can keep as is or
official
terraform-stacks
hashicorp
Comprehensive guide for working with HashiCorp Terraform Stacks. Use when creating, modifying, or validating Terraform Stack configurations (.tfcomponent.hcl,…
official
terraform-style-guide
hashicorp
We need to translate the given text from English to Bahasa Indonesia. The text describes a skill for generating and maintaining Terraform code following HashiCorp's style conventions. We must preserve product names, protocol names, URLs, numbers, technical terms. The name "terraform-style-guide" is not in the text, so we don't include it. We translate only the text inside <text>. No extra commentary, labels, etc. The text: "Generate and maintain Terraform code following HashiCorp's official style conventions. Enforces two-space indentation, lowercase underscore naming, and standard file organization across terraform.tf , providers.tf , main.tf , variables.tf , outputs.tf , and locals.tf Requires type and description on all variables and outputs, with validation rules and sensitive flag support for credentials Prioritizes for_each over count for dynamic resources, applies security hardening (encryption, private..." We need to translate to Indonesian. Keep technical terms like Terraform, HashiCorp, terraform.tf, providers.tf, etc. as is
official
terraform-style-guide
hashicorp
Generate Terraform HCL code following HashiCorp's official style conventions and best practices. Use when writing, reviewing, or generating Terraform…
official
terraform-test
hashicorp
Panduan komprehensif untuk menulis dan menjalankan tes Terraform. Gunakan saat membuat file tes (.tftest.hcl), menulis skenario tes dengan run blocks, memvalidasi…
official
terraform-test
hashicorp
Panduan lengkap untuk menulis dan menjalankan tes Terraform dengan asersi, mocking, dan validasi modul. Tulis file tes menggunakan sintaks .tftest.hcl dengan blok run yang dijalankan dalam mode plan atau apply, mendukung eksekusi sekuensial dan paralel dengan isolasi status opsional. Asersi kondisi pada atribut sumber daya, output, dan sumber data; gunakan expect_failures untuk memvalidasi bahwa input yang tidak valid ditolak dengan benar. Mock provider (Terraform 1.7.0+) mensimulasikan perilaku infrastruktur tanpa...
official
tfctl
hashicorp
Berinteraksi dengan HCP Terraform / Terraform Cloud / Terraform Enterprise menggunakan CLI tfctl. Cakupan API penuh. Gunakan untuk HCP Terraform atau Terraform Cloud atau…
official
windows-builder
hashicorp
Build Windows images with Packer using WinRM communicator and PowerShell provisioners. Use when creating Windows AMIs, Azure images, or VMware templates.
official
windows-builder
hashicorp
Bangun citra Windows dengan Packer menggunakan komunikator WinRM dan penyedia PowerShell. Gunakan saat membuat AMI Windows, citra Azure, atau template VMware.
official