[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-hashicorp-aws-ami-builder":3,"mdc-j2vi1i-key":37,"related-repo-hashicorp-aws-ami-builder":1321,"related-org-hashicorp-aws-ami-builder":1407},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":25,"repoUrl":26,"updatedAt":27,"license":28,"forks":29,"topics":30,"repo":32,"sourceUrl":35,"mdContent":36},"aws-ami-builder","build Amazon Machine Images with Packer","Build Amazon Machine Images (AMIs) with Packer using the amazon-ebs builder. Use when creating custom AMIs for EC2 instances.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},"hashicorp","HashiCorp","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fhashicorp.png",[12,16,19,22],{"name":13,"slug":14,"type":15},"Deployment","deployment","tag",{"name":17,"slug":18,"type":15},"Infrastructure as Code","infrastructure-as-code",{"name":20,"slug":21,"type":15},"AWS","aws",{"name":23,"slug":24,"type":15},"Packer","packer",728,"https:\u002F\u002Fgithub.com\u002Fhashicorp\u002Fagent-skills","2026-04-06T18:25:04.01571",null,104,[31],"doormat-managed",{"repoUrl":26,"stars":25,"forks":29,"topics":33,"description":34},[31],"A collection of Agent skills and Claude Code plugins for HashiCorp products.","https:\u002F\u002Fgithub.com\u002Fhashicorp\u002Fagent-skills\u002Ftree\u002FHEAD\u002Fpacker\u002Fbuilders\u002Fskills\u002Faws-ami-builder","---\nname: aws-ami-builder\ndescription: Build Amazon Machine Images (AMIs) with Packer using the amazon-ebs builder. Use when creating custom AMIs for EC2 instances.\n---\n\n# AWS AMI Builder\n\nBuild Amazon Machine Images (AMIs) using Packer's `amazon-ebs` builder.\n\n**Reference:** [Amazon EBS Builder](https:\u002F\u002Fdeveloper.hashicorp.com\u002Fpacker\u002Fintegrations\u002Fhashicorp\u002Famazon\u002Flatest\u002Fcomponents\u002Fbuilder\u002Febs)\n\n> **Note:** Building AMIs incurs AWS costs (EC2 instances, EBS storage, data transfer). Builds typically take 10-30 minutes depending on provisioning complexity.\n\n## Basic AMI Template\n\n```hcl\npacker {\n  required_plugins {\n    amazon = {\n      source  = \"github.com\u002Fhashicorp\u002Famazon\"\n      version = \"~> 1.3\"\n    }\n  }\n}\n\nvariable \"region\" {\n  type    = string\n  default = \"us-west-2\"\n}\n\nlocals {\n  timestamp = regex_replace(timestamp(), \"[- TZ:]\", \"\")\n}\n\nsource \"amazon-ebs\" \"ubuntu\" {\n  region        = var.region\n  instance_type = \"t3.micro\"\n\n  source_ami_filter {\n    filters = {\n      name                = \"ubuntu\u002Fimages\u002F*ubuntu-jammy-22.04-amd64-server-*\"\n      root-device-type    = \"ebs\"\n      virtualization-type = \"hvm\"\n    }\n    most_recent = true\n    owners      = [\"099720109477\"] # Canonical\n  }\n\n  ssh_username = \"ubuntu\"\n  ami_name     = \"my-app-${local.timestamp}\"\n\n  tags = {\n    Name      = \"my-app\"\n    BuildDate = local.timestamp\n  }\n}\n\nbuild {\n  sources = [\"source.amazon-ebs.ubuntu\"]\n\n  provisioner \"shell\" {\n    inline = [\n      \"sudo apt-get update\",\n      \"sudo apt-get upgrade -y\",\n    ]\n  }\n}\n```\n\n## Common Source AMI Filters\n\n### Ubuntu 22.04 LTS\n```hcl\nsource_ami_filter {\n  filters = {\n    name                = \"ubuntu\u002Fimages\u002F*ubuntu-jammy-22.04-amd64-server-*\"\n    root-device-type    = \"ebs\"\n    virtualization-type = \"hvm\"\n  }\n  most_recent = true\n  owners      = [\"099720109477\"] # Canonical\n}\n```\n\n### Amazon Linux 2023\n```hcl\nsource_ami_filter {\n  filters = {\n    name                = \"al2023-ami-*-x86_64\"\n    root-device-type    = \"ebs\"\n    virtualization-type = \"hvm\"\n  }\n  most_recent = true\n  owners      = [\"amazon\"]\n}\n```\n\n## Multi-Region AMI\n\n```hcl\nsource \"amazon-ebs\" \"ubuntu\" {\n  region        = \"us-west-2\"\n  instance_type = \"t3.micro\"\n\n  source_ami_filter {\n    filters = {\n      name = \"ubuntu\u002Fimages\u002F*ubuntu-jammy-22.04-amd64-server-*\"\n    }\n    most_recent = true\n    owners      = [\"099720109477\"]\n  }\n\n  ssh_username = \"ubuntu\"\n  ami_name     = \"my-app-${local.timestamp}\"\n\n  # Copy to additional regions\n  ami_regions = [\"us-east-1\", \"us-east-2\", \"eu-west-1\"]\n}\n```\n\n## Authentication\n\nPacker uses AWS credential resolution:\n\n1. Environment variables: `AWS_ACCESS_KEY_ID`, `AWS_SECRET_ACCESS_KEY`\n2. AWS credentials file: `~\u002F.aws\u002Fcredentials`\n3. IAM instance profile (when running on EC2)\n\n```bash\nexport AWS_ACCESS_KEY_ID=\"your-access-key\"\nexport AWS_SECRET_ACCESS_KEY=\"your-secret-key\"\nexport AWS_REGION=\"us-west-2\"\n\npacker build .\n```\n\n## Build Commands\n\n```bash\n# Initialize plugins\npacker init .\n\n# Validate template\npacker validate .\n\n# Build AMI\npacker build .\n\n# Build with variables\npacker build -var \"region=us-east-1\" .\n```\n\n## Common Issues\n\n**SSH Timeout**\n- Ensure security group allows SSH (port 22)\n- Verify subnet has internet access\n\n**AMI Already Exists**\n- AMI names must be unique\n- Use timestamp in name: `my-app-${local.timestamp}`\n\n**Volume Size Too Small**\n- Check source AMI's volume size\n- Set `launch_block_device_mappings.volume_size` accordingly\n\n## References\n\n- [Amazon EBS Builder](https:\u002F\u002Fdeveloper.hashicorp.com\u002Fpacker\u002Fintegrations\u002Fhashicorp\u002Famazon\u002Flatest\u002Fcomponents\u002Fbuilder\u002Febs)\n- [AWS AMI Documentation](https:\u002F\u002Fdocs.aws.amazon.com\u002FAWSEC2\u002Flatest\u002FUserGuide\u002FAMIs.html)\n",{"data":38,"body":39},{"name":4,"description":6},{"type":40,"children":41},"root",[42,50,65,85,99,106,564,570,577,654,660,732,738,876,882,887,927,1056,1062,1204,1210,1218,1232,1240,1259,1267,1288,1294,1315],{"type":43,"tag":44,"props":45,"children":46},"element","h1",{"id":4},[47],{"type":48,"value":49},"text","AWS AMI Builder",{"type":43,"tag":51,"props":52,"children":53},"p",{},[54,56,63],{"type":48,"value":55},"Build Amazon Machine Images (AMIs) using Packer's ",{"type":43,"tag":57,"props":58,"children":60},"code",{"className":59},[],[61],{"type":48,"value":62},"amazon-ebs",{"type":48,"value":64}," builder.",{"type":43,"tag":51,"props":66,"children":67},{},[68,74,76],{"type":43,"tag":69,"props":70,"children":71},"strong",{},[72],{"type":48,"value":73},"Reference:",{"type":48,"value":75}," ",{"type":43,"tag":77,"props":78,"children":82},"a",{"href":79,"rel":80},"https:\u002F\u002Fdeveloper.hashicorp.com\u002Fpacker\u002Fintegrations\u002Fhashicorp\u002Famazon\u002Flatest\u002Fcomponents\u002Fbuilder\u002Febs",[81],"nofollow",[83],{"type":48,"value":84},"Amazon EBS Builder",{"type":43,"tag":86,"props":87,"children":88},"blockquote",{},[89],{"type":43,"tag":51,"props":90,"children":91},{},[92,97],{"type":43,"tag":69,"props":93,"children":94},{},[95],{"type":48,"value":96},"Note:",{"type":48,"value":98}," Building AMIs incurs AWS costs (EC2 instances, EBS storage, data transfer). Builds typically take 10-30 minutes depending on provisioning complexity.",{"type":43,"tag":100,"props":101,"children":103},"h2",{"id":102},"basic-ami-template",[104],{"type":48,"value":105},"Basic AMI Template",{"type":43,"tag":107,"props":108,"children":113},"pre",{"className":109,"code":110,"language":111,"meta":112,"style":112},"language-hcl shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","packer {\n  required_plugins {\n    amazon = {\n      source  = \"github.com\u002Fhashicorp\u002Famazon\"\n      version = \"~> 1.3\"\n    }\n  }\n}\n\nvariable \"region\" {\n  type    = string\n  default = \"us-west-2\"\n}\n\nlocals {\n  timestamp = regex_replace(timestamp(), \"[- TZ:]\", \"\")\n}\n\nsource \"amazon-ebs\" \"ubuntu\" {\n  region        = var.region\n  instance_type = \"t3.micro\"\n\n  source_ami_filter {\n    filters = {\n      name                = \"ubuntu\u002Fimages\u002F*ubuntu-jammy-22.04-amd64-server-*\"\n      root-device-type    = \"ebs\"\n      virtualization-type = \"hvm\"\n    }\n    most_recent = true\n    owners      = [\"099720109477\"] # Canonical\n  }\n\n  ssh_username = \"ubuntu\"\n  ami_name     = \"my-app-${local.timestamp}\"\n\n  tags = {\n    Name      = \"my-app\"\n    BuildDate = local.timestamp\n  }\n}\n\nbuild {\n  sources = [\"source.amazon-ebs.ubuntu\"]\n\n  provisioner \"shell\" {\n    inline = [\n      \"sudo apt-get update\",\n      \"sudo apt-get upgrade -y\",\n    ]\n  }\n}\n","hcl","",[114],{"type":43,"tag":57,"props":115,"children":116},{"__ignoreMap":112},[117,128,137,146,155,164,173,182,191,201,210,219,228,236,244,253,262,270,278,287,296,305,313,322,331,340,349,358,366,375,384,392,400,409,418,426,435,444,453,461,469,477,486,495,503,512,521,530,539,548,556],{"type":43,"tag":118,"props":119,"children":122},"span",{"class":120,"line":121},"line",1,[123],{"type":43,"tag":118,"props":124,"children":125},{},[126],{"type":48,"value":127},"packer {\n",{"type":43,"tag":118,"props":129,"children":131},{"class":120,"line":130},2,[132],{"type":43,"tag":118,"props":133,"children":134},{},[135],{"type":48,"value":136},"  required_plugins {\n",{"type":43,"tag":118,"props":138,"children":140},{"class":120,"line":139},3,[141],{"type":43,"tag":118,"props":142,"children":143},{},[144],{"type":48,"value":145},"    amazon = {\n",{"type":43,"tag":118,"props":147,"children":149},{"class":120,"line":148},4,[150],{"type":43,"tag":118,"props":151,"children":152},{},[153],{"type":48,"value":154},"      source  = \"github.com\u002Fhashicorp\u002Famazon\"\n",{"type":43,"tag":118,"props":156,"children":158},{"class":120,"line":157},5,[159],{"type":43,"tag":118,"props":160,"children":161},{},[162],{"type":48,"value":163},"      version = \"~> 1.3\"\n",{"type":43,"tag":118,"props":165,"children":167},{"class":120,"line":166},6,[168],{"type":43,"tag":118,"props":169,"children":170},{},[171],{"type":48,"value":172},"    }\n",{"type":43,"tag":118,"props":174,"children":176},{"class":120,"line":175},7,[177],{"type":43,"tag":118,"props":178,"children":179},{},[180],{"type":48,"value":181},"  }\n",{"type":43,"tag":118,"props":183,"children":185},{"class":120,"line":184},8,[186],{"type":43,"tag":118,"props":187,"children":188},{},[189],{"type":48,"value":190},"}\n",{"type":43,"tag":118,"props":192,"children":194},{"class":120,"line":193},9,[195],{"type":43,"tag":118,"props":196,"children":198},{"emptyLinePlaceholder":197},true,[199],{"type":48,"value":200},"\n",{"type":43,"tag":118,"props":202,"children":204},{"class":120,"line":203},10,[205],{"type":43,"tag":118,"props":206,"children":207},{},[208],{"type":48,"value":209},"variable \"region\" {\n",{"type":43,"tag":118,"props":211,"children":213},{"class":120,"line":212},11,[214],{"type":43,"tag":118,"props":215,"children":216},{},[217],{"type":48,"value":218},"  type    = string\n",{"type":43,"tag":118,"props":220,"children":222},{"class":120,"line":221},12,[223],{"type":43,"tag":118,"props":224,"children":225},{},[226],{"type":48,"value":227},"  default = \"us-west-2\"\n",{"type":43,"tag":118,"props":229,"children":231},{"class":120,"line":230},13,[232],{"type":43,"tag":118,"props":233,"children":234},{},[235],{"type":48,"value":190},{"type":43,"tag":118,"props":237,"children":239},{"class":120,"line":238},14,[240],{"type":43,"tag":118,"props":241,"children":242},{"emptyLinePlaceholder":197},[243],{"type":48,"value":200},{"type":43,"tag":118,"props":245,"children":247},{"class":120,"line":246},15,[248],{"type":43,"tag":118,"props":249,"children":250},{},[251],{"type":48,"value":252},"locals {\n",{"type":43,"tag":118,"props":254,"children":256},{"class":120,"line":255},16,[257],{"type":43,"tag":118,"props":258,"children":259},{},[260],{"type":48,"value":261},"  timestamp = regex_replace(timestamp(), \"[- TZ:]\", \"\")\n",{"type":43,"tag":118,"props":263,"children":265},{"class":120,"line":264},17,[266],{"type":43,"tag":118,"props":267,"children":268},{},[269],{"type":48,"value":190},{"type":43,"tag":118,"props":271,"children":273},{"class":120,"line":272},18,[274],{"type":43,"tag":118,"props":275,"children":276},{"emptyLinePlaceholder":197},[277],{"type":48,"value":200},{"type":43,"tag":118,"props":279,"children":281},{"class":120,"line":280},19,[282],{"type":43,"tag":118,"props":283,"children":284},{},[285],{"type":48,"value":286},"source \"amazon-ebs\" \"ubuntu\" {\n",{"type":43,"tag":118,"props":288,"children":290},{"class":120,"line":289},20,[291],{"type":43,"tag":118,"props":292,"children":293},{},[294],{"type":48,"value":295},"  region        = var.region\n",{"type":43,"tag":118,"props":297,"children":299},{"class":120,"line":298},21,[300],{"type":43,"tag":118,"props":301,"children":302},{},[303],{"type":48,"value":304},"  instance_type = \"t3.micro\"\n",{"type":43,"tag":118,"props":306,"children":308},{"class":120,"line":307},22,[309],{"type":43,"tag":118,"props":310,"children":311},{"emptyLinePlaceholder":197},[312],{"type":48,"value":200},{"type":43,"tag":118,"props":314,"children":316},{"class":120,"line":315},23,[317],{"type":43,"tag":118,"props":318,"children":319},{},[320],{"type":48,"value":321},"  source_ami_filter {\n",{"type":43,"tag":118,"props":323,"children":325},{"class":120,"line":324},24,[326],{"type":43,"tag":118,"props":327,"children":328},{},[329],{"type":48,"value":330},"    filters = {\n",{"type":43,"tag":118,"props":332,"children":334},{"class":120,"line":333},25,[335],{"type":43,"tag":118,"props":336,"children":337},{},[338],{"type":48,"value":339},"      name                = \"ubuntu\u002Fimages\u002F*ubuntu-jammy-22.04-amd64-server-*\"\n",{"type":43,"tag":118,"props":341,"children":343},{"class":120,"line":342},26,[344],{"type":43,"tag":118,"props":345,"children":346},{},[347],{"type":48,"value":348},"      root-device-type    = \"ebs\"\n",{"type":43,"tag":118,"props":350,"children":352},{"class":120,"line":351},27,[353],{"type":43,"tag":118,"props":354,"children":355},{},[356],{"type":48,"value":357},"      virtualization-type = \"hvm\"\n",{"type":43,"tag":118,"props":359,"children":361},{"class":120,"line":360},28,[362],{"type":43,"tag":118,"props":363,"children":364},{},[365],{"type":48,"value":172},{"type":43,"tag":118,"props":367,"children":369},{"class":120,"line":368},29,[370],{"type":43,"tag":118,"props":371,"children":372},{},[373],{"type":48,"value":374},"    most_recent = true\n",{"type":43,"tag":118,"props":376,"children":378},{"class":120,"line":377},30,[379],{"type":43,"tag":118,"props":380,"children":381},{},[382],{"type":48,"value":383},"    owners      = [\"099720109477\"] # Canonical\n",{"type":43,"tag":118,"props":385,"children":387},{"class":120,"line":386},31,[388],{"type":43,"tag":118,"props":389,"children":390},{},[391],{"type":48,"value":181},{"type":43,"tag":118,"props":393,"children":395},{"class":120,"line":394},32,[396],{"type":43,"tag":118,"props":397,"children":398},{"emptyLinePlaceholder":197},[399],{"type":48,"value":200},{"type":43,"tag":118,"props":401,"children":403},{"class":120,"line":402},33,[404],{"type":43,"tag":118,"props":405,"children":406},{},[407],{"type":48,"value":408},"  ssh_username = \"ubuntu\"\n",{"type":43,"tag":118,"props":410,"children":412},{"class":120,"line":411},34,[413],{"type":43,"tag":118,"props":414,"children":415},{},[416],{"type":48,"value":417},"  ami_name     = \"my-app-${local.timestamp}\"\n",{"type":43,"tag":118,"props":419,"children":421},{"class":120,"line":420},35,[422],{"type":43,"tag":118,"props":423,"children":424},{"emptyLinePlaceholder":197},[425],{"type":48,"value":200},{"type":43,"tag":118,"props":427,"children":429},{"class":120,"line":428},36,[430],{"type":43,"tag":118,"props":431,"children":432},{},[433],{"type":48,"value":434},"  tags = {\n",{"type":43,"tag":118,"props":436,"children":438},{"class":120,"line":437},37,[439],{"type":43,"tag":118,"props":440,"children":441},{},[442],{"type":48,"value":443},"    Name      = \"my-app\"\n",{"type":43,"tag":118,"props":445,"children":447},{"class":120,"line":446},38,[448],{"type":43,"tag":118,"props":449,"children":450},{},[451],{"type":48,"value":452},"    BuildDate = local.timestamp\n",{"type":43,"tag":118,"props":454,"children":456},{"class":120,"line":455},39,[457],{"type":43,"tag":118,"props":458,"children":459},{},[460],{"type":48,"value":181},{"type":43,"tag":118,"props":462,"children":464},{"class":120,"line":463},40,[465],{"type":43,"tag":118,"props":466,"children":467},{},[468],{"type":48,"value":190},{"type":43,"tag":118,"props":470,"children":472},{"class":120,"line":471},41,[473],{"type":43,"tag":118,"props":474,"children":475},{"emptyLinePlaceholder":197},[476],{"type":48,"value":200},{"type":43,"tag":118,"props":478,"children":480},{"class":120,"line":479},42,[481],{"type":43,"tag":118,"props":482,"children":483},{},[484],{"type":48,"value":485},"build {\n",{"type":43,"tag":118,"props":487,"children":489},{"class":120,"line":488},43,[490],{"type":43,"tag":118,"props":491,"children":492},{},[493],{"type":48,"value":494},"  sources = [\"source.amazon-ebs.ubuntu\"]\n",{"type":43,"tag":118,"props":496,"children":498},{"class":120,"line":497},44,[499],{"type":43,"tag":118,"props":500,"children":501},{"emptyLinePlaceholder":197},[502],{"type":48,"value":200},{"type":43,"tag":118,"props":504,"children":506},{"class":120,"line":505},45,[507],{"type":43,"tag":118,"props":508,"children":509},{},[510],{"type":48,"value":511},"  provisioner \"shell\" {\n",{"type":43,"tag":118,"props":513,"children":515},{"class":120,"line":514},46,[516],{"type":43,"tag":118,"props":517,"children":518},{},[519],{"type":48,"value":520},"    inline = [\n",{"type":43,"tag":118,"props":522,"children":524},{"class":120,"line":523},47,[525],{"type":43,"tag":118,"props":526,"children":527},{},[528],{"type":48,"value":529},"      \"sudo apt-get update\",\n",{"type":43,"tag":118,"props":531,"children":533},{"class":120,"line":532},48,[534],{"type":43,"tag":118,"props":535,"children":536},{},[537],{"type":48,"value":538},"      \"sudo apt-get upgrade -y\",\n",{"type":43,"tag":118,"props":540,"children":542},{"class":120,"line":541},49,[543],{"type":43,"tag":118,"props":544,"children":545},{},[546],{"type":48,"value":547},"    ]\n",{"type":43,"tag":118,"props":549,"children":551},{"class":120,"line":550},50,[552],{"type":43,"tag":118,"props":553,"children":554},{},[555],{"type":48,"value":181},{"type":43,"tag":118,"props":557,"children":559},{"class":120,"line":558},51,[560],{"type":43,"tag":118,"props":561,"children":562},{},[563],{"type":48,"value":190},{"type":43,"tag":100,"props":565,"children":567},{"id":566},"common-source-ami-filters",[568],{"type":48,"value":569},"Common Source AMI Filters",{"type":43,"tag":571,"props":572,"children":574},"h3",{"id":573},"ubuntu-2204-lts",[575],{"type":48,"value":576},"Ubuntu 22.04 LTS",{"type":43,"tag":107,"props":578,"children":580},{"className":109,"code":579,"language":111,"meta":112,"style":112},"source_ami_filter {\n  filters = {\n    name                = \"ubuntu\u002Fimages\u002F*ubuntu-jammy-22.04-amd64-server-*\"\n    root-device-type    = \"ebs\"\n    virtualization-type = \"hvm\"\n  }\n  most_recent = true\n  owners      = [\"099720109477\"] # Canonical\n}\n",[581],{"type":43,"tag":57,"props":582,"children":583},{"__ignoreMap":112},[584,592,600,608,616,624,631,639,647],{"type":43,"tag":118,"props":585,"children":586},{"class":120,"line":121},[587],{"type":43,"tag":118,"props":588,"children":589},{},[590],{"type":48,"value":591},"source_ami_filter {\n",{"type":43,"tag":118,"props":593,"children":594},{"class":120,"line":130},[595],{"type":43,"tag":118,"props":596,"children":597},{},[598],{"type":48,"value":599},"  filters = {\n",{"type":43,"tag":118,"props":601,"children":602},{"class":120,"line":139},[603],{"type":43,"tag":118,"props":604,"children":605},{},[606],{"type":48,"value":607},"    name                = \"ubuntu\u002Fimages\u002F*ubuntu-jammy-22.04-amd64-server-*\"\n",{"type":43,"tag":118,"props":609,"children":610},{"class":120,"line":148},[611],{"type":43,"tag":118,"props":612,"children":613},{},[614],{"type":48,"value":615},"    root-device-type    = \"ebs\"\n",{"type":43,"tag":118,"props":617,"children":618},{"class":120,"line":157},[619],{"type":43,"tag":118,"props":620,"children":621},{},[622],{"type":48,"value":623},"    virtualization-type = \"hvm\"\n",{"type":43,"tag":118,"props":625,"children":626},{"class":120,"line":166},[627],{"type":43,"tag":118,"props":628,"children":629},{},[630],{"type":48,"value":181},{"type":43,"tag":118,"props":632,"children":633},{"class":120,"line":175},[634],{"type":43,"tag":118,"props":635,"children":636},{},[637],{"type":48,"value":638},"  most_recent = true\n",{"type":43,"tag":118,"props":640,"children":641},{"class":120,"line":184},[642],{"type":43,"tag":118,"props":643,"children":644},{},[645],{"type":48,"value":646},"  owners      = [\"099720109477\"] # Canonical\n",{"type":43,"tag":118,"props":648,"children":649},{"class":120,"line":193},[650],{"type":43,"tag":118,"props":651,"children":652},{},[653],{"type":48,"value":190},{"type":43,"tag":571,"props":655,"children":657},{"id":656},"amazon-linux-2023",[658],{"type":48,"value":659},"Amazon Linux 2023",{"type":43,"tag":107,"props":661,"children":663},{"className":109,"code":662,"language":111,"meta":112,"style":112},"source_ami_filter {\n  filters = {\n    name                = \"al2023-ami-*-x86_64\"\n    root-device-type    = \"ebs\"\n    virtualization-type = \"hvm\"\n  }\n  most_recent = true\n  owners      = [\"amazon\"]\n}\n",[664],{"type":43,"tag":57,"props":665,"children":666},{"__ignoreMap":112},[667,674,681,689,696,703,710,717,725],{"type":43,"tag":118,"props":668,"children":669},{"class":120,"line":121},[670],{"type":43,"tag":118,"props":671,"children":672},{},[673],{"type":48,"value":591},{"type":43,"tag":118,"props":675,"children":676},{"class":120,"line":130},[677],{"type":43,"tag":118,"props":678,"children":679},{},[680],{"type":48,"value":599},{"type":43,"tag":118,"props":682,"children":683},{"class":120,"line":139},[684],{"type":43,"tag":118,"props":685,"children":686},{},[687],{"type":48,"value":688},"    name                = \"al2023-ami-*-x86_64\"\n",{"type":43,"tag":118,"props":690,"children":691},{"class":120,"line":148},[692],{"type":43,"tag":118,"props":693,"children":694},{},[695],{"type":48,"value":615},{"type":43,"tag":118,"props":697,"children":698},{"class":120,"line":157},[699],{"type":43,"tag":118,"props":700,"children":701},{},[702],{"type":48,"value":623},{"type":43,"tag":118,"props":704,"children":705},{"class":120,"line":166},[706],{"type":43,"tag":118,"props":707,"children":708},{},[709],{"type":48,"value":181},{"type":43,"tag":118,"props":711,"children":712},{"class":120,"line":175},[713],{"type":43,"tag":118,"props":714,"children":715},{},[716],{"type":48,"value":638},{"type":43,"tag":118,"props":718,"children":719},{"class":120,"line":184},[720],{"type":43,"tag":118,"props":721,"children":722},{},[723],{"type":48,"value":724},"  owners      = [\"amazon\"]\n",{"type":43,"tag":118,"props":726,"children":727},{"class":120,"line":193},[728],{"type":43,"tag":118,"props":729,"children":730},{},[731],{"type":48,"value":190},{"type":43,"tag":100,"props":733,"children":735},{"id":734},"multi-region-ami",[736],{"type":48,"value":737},"Multi-Region AMI",{"type":43,"tag":107,"props":739,"children":741},{"className":109,"code":740,"language":111,"meta":112,"style":112},"source \"amazon-ebs\" \"ubuntu\" {\n  region        = \"us-west-2\"\n  instance_type = \"t3.micro\"\n\n  source_ami_filter {\n    filters = {\n      name = \"ubuntu\u002Fimages\u002F*ubuntu-jammy-22.04-amd64-server-*\"\n    }\n    most_recent = true\n    owners      = [\"099720109477\"]\n  }\n\n  ssh_username = \"ubuntu\"\n  ami_name     = \"my-app-${local.timestamp}\"\n\n  # Copy to additional regions\n  ami_regions = [\"us-east-1\", \"us-east-2\", \"eu-west-1\"]\n}\n",[742],{"type":43,"tag":57,"props":743,"children":744},{"__ignoreMap":112},[745,752,760,767,774,781,788,796,803,810,818,825,832,839,846,853,861,869],{"type":43,"tag":118,"props":746,"children":747},{"class":120,"line":121},[748],{"type":43,"tag":118,"props":749,"children":750},{},[751],{"type":48,"value":286},{"type":43,"tag":118,"props":753,"children":754},{"class":120,"line":130},[755],{"type":43,"tag":118,"props":756,"children":757},{},[758],{"type":48,"value":759},"  region        = \"us-west-2\"\n",{"type":43,"tag":118,"props":761,"children":762},{"class":120,"line":139},[763],{"type":43,"tag":118,"props":764,"children":765},{},[766],{"type":48,"value":304},{"type":43,"tag":118,"props":768,"children":769},{"class":120,"line":148},[770],{"type":43,"tag":118,"props":771,"children":772},{"emptyLinePlaceholder":197},[773],{"type":48,"value":200},{"type":43,"tag":118,"props":775,"children":776},{"class":120,"line":157},[777],{"type":43,"tag":118,"props":778,"children":779},{},[780],{"type":48,"value":321},{"type":43,"tag":118,"props":782,"children":783},{"class":120,"line":166},[784],{"type":43,"tag":118,"props":785,"children":786},{},[787],{"type":48,"value":330},{"type":43,"tag":118,"props":789,"children":790},{"class":120,"line":175},[791],{"type":43,"tag":118,"props":792,"children":793},{},[794],{"type":48,"value":795},"      name = \"ubuntu\u002Fimages\u002F*ubuntu-jammy-22.04-amd64-server-*\"\n",{"type":43,"tag":118,"props":797,"children":798},{"class":120,"line":184},[799],{"type":43,"tag":118,"props":800,"children":801},{},[802],{"type":48,"value":172},{"type":43,"tag":118,"props":804,"children":805},{"class":120,"line":193},[806],{"type":43,"tag":118,"props":807,"children":808},{},[809],{"type":48,"value":374},{"type":43,"tag":118,"props":811,"children":812},{"class":120,"line":203},[813],{"type":43,"tag":118,"props":814,"children":815},{},[816],{"type":48,"value":817},"    owners      = [\"099720109477\"]\n",{"type":43,"tag":118,"props":819,"children":820},{"class":120,"line":212},[821],{"type":43,"tag":118,"props":822,"children":823},{},[824],{"type":48,"value":181},{"type":43,"tag":118,"props":826,"children":827},{"class":120,"line":221},[828],{"type":43,"tag":118,"props":829,"children":830},{"emptyLinePlaceholder":197},[831],{"type":48,"value":200},{"type":43,"tag":118,"props":833,"children":834},{"class":120,"line":230},[835],{"type":43,"tag":118,"props":836,"children":837},{},[838],{"type":48,"value":408},{"type":43,"tag":118,"props":840,"children":841},{"class":120,"line":238},[842],{"type":43,"tag":118,"props":843,"children":844},{},[845],{"type":48,"value":417},{"type":43,"tag":118,"props":847,"children":848},{"class":120,"line":246},[849],{"type":43,"tag":118,"props":850,"children":851},{"emptyLinePlaceholder":197},[852],{"type":48,"value":200},{"type":43,"tag":118,"props":854,"children":855},{"class":120,"line":255},[856],{"type":43,"tag":118,"props":857,"children":858},{},[859],{"type":48,"value":860},"  # Copy to additional regions\n",{"type":43,"tag":118,"props":862,"children":863},{"class":120,"line":264},[864],{"type":43,"tag":118,"props":865,"children":866},{},[867],{"type":48,"value":868},"  ami_regions = [\"us-east-1\", \"us-east-2\", \"eu-west-1\"]\n",{"type":43,"tag":118,"props":870,"children":871},{"class":120,"line":272},[872],{"type":43,"tag":118,"props":873,"children":874},{},[875],{"type":48,"value":190},{"type":43,"tag":100,"props":877,"children":879},{"id":878},"authentication",[880],{"type":48,"value":881},"Authentication",{"type":43,"tag":51,"props":883,"children":884},{},[885],{"type":48,"value":886},"Packer uses AWS credential resolution:",{"type":43,"tag":888,"props":889,"children":890},"ol",{},[891,911,922],{"type":43,"tag":892,"props":893,"children":894},"li",{},[895,897,903,905],{"type":48,"value":896},"Environment variables: ",{"type":43,"tag":57,"props":898,"children":900},{"className":899},[],[901],{"type":48,"value":902},"AWS_ACCESS_KEY_ID",{"type":48,"value":904},", ",{"type":43,"tag":57,"props":906,"children":908},{"className":907},[],[909],{"type":48,"value":910},"AWS_SECRET_ACCESS_KEY",{"type":43,"tag":892,"props":912,"children":913},{},[914,916],{"type":48,"value":915},"AWS credentials file: ",{"type":43,"tag":57,"props":917,"children":919},{"className":918},[],[920],{"type":48,"value":921},"~\u002F.aws\u002Fcredentials",{"type":43,"tag":892,"props":923,"children":924},{},[925],{"type":48,"value":926},"IAM instance profile (when running on EC2)",{"type":43,"tag":107,"props":928,"children":932},{"className":929,"code":930,"language":931,"meta":112,"style":112},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","export AWS_ACCESS_KEY_ID=\"your-access-key\"\nexport AWS_SECRET_ACCESS_KEY=\"your-secret-key\"\nexport AWS_REGION=\"us-west-2\"\n\npacker build .\n","bash",[933],{"type":43,"tag":57,"props":934,"children":935},{"__ignoreMap":112},[936,973,1002,1031,1038],{"type":43,"tag":118,"props":937,"children":938},{"class":120,"line":121},[939,945,951,957,962,968],{"type":43,"tag":118,"props":940,"children":942},{"style":941},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[943],{"type":48,"value":944},"export",{"type":43,"tag":118,"props":946,"children":948},{"style":947},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[949],{"type":48,"value":950}," AWS_ACCESS_KEY_ID",{"type":43,"tag":118,"props":952,"children":954},{"style":953},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[955],{"type":48,"value":956},"=",{"type":43,"tag":118,"props":958,"children":959},{"style":953},[960],{"type":48,"value":961},"\"",{"type":43,"tag":118,"props":963,"children":965},{"style":964},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[966],{"type":48,"value":967},"your-access-key",{"type":43,"tag":118,"props":969,"children":970},{"style":953},[971],{"type":48,"value":972},"\"\n",{"type":43,"tag":118,"props":974,"children":975},{"class":120,"line":130},[976,980,985,989,993,998],{"type":43,"tag":118,"props":977,"children":978},{"style":941},[979],{"type":48,"value":944},{"type":43,"tag":118,"props":981,"children":982},{"style":947},[983],{"type":48,"value":984}," AWS_SECRET_ACCESS_KEY",{"type":43,"tag":118,"props":986,"children":987},{"style":953},[988],{"type":48,"value":956},{"type":43,"tag":118,"props":990,"children":991},{"style":953},[992],{"type":48,"value":961},{"type":43,"tag":118,"props":994,"children":995},{"style":964},[996],{"type":48,"value":997},"your-secret-key",{"type":43,"tag":118,"props":999,"children":1000},{"style":953},[1001],{"type":48,"value":972},{"type":43,"tag":118,"props":1003,"children":1004},{"class":120,"line":139},[1005,1009,1014,1018,1022,1027],{"type":43,"tag":118,"props":1006,"children":1007},{"style":941},[1008],{"type":48,"value":944},{"type":43,"tag":118,"props":1010,"children":1011},{"style":947},[1012],{"type":48,"value":1013}," AWS_REGION",{"type":43,"tag":118,"props":1015,"children":1016},{"style":953},[1017],{"type":48,"value":956},{"type":43,"tag":118,"props":1019,"children":1020},{"style":953},[1021],{"type":48,"value":961},{"type":43,"tag":118,"props":1023,"children":1024},{"style":964},[1025],{"type":48,"value":1026},"us-west-2",{"type":43,"tag":118,"props":1028,"children":1029},{"style":953},[1030],{"type":48,"value":972},{"type":43,"tag":118,"props":1032,"children":1033},{"class":120,"line":148},[1034],{"type":43,"tag":118,"props":1035,"children":1036},{"emptyLinePlaceholder":197},[1037],{"type":48,"value":200},{"type":43,"tag":118,"props":1039,"children":1040},{"class":120,"line":157},[1041,1046,1051],{"type":43,"tag":118,"props":1042,"children":1044},{"style":1043},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[1045],{"type":48,"value":24},{"type":43,"tag":118,"props":1047,"children":1048},{"style":964},[1049],{"type":48,"value":1050}," build",{"type":43,"tag":118,"props":1052,"children":1053},{"style":964},[1054],{"type":48,"value":1055}," .\n",{"type":43,"tag":100,"props":1057,"children":1059},{"id":1058},"build-commands",[1060],{"type":48,"value":1061},"Build Commands",{"type":43,"tag":107,"props":1063,"children":1065},{"className":929,"code":1064,"language":931,"meta":112,"style":112},"# Initialize plugins\npacker init .\n\n# Validate template\npacker validate .\n\n# Build AMI\npacker build .\n\n# Build with variables\npacker build -var \"region=us-east-1\" .\n",[1066],{"type":43,"tag":57,"props":1067,"children":1068},{"__ignoreMap":112},[1069,1078,1094,1101,1109,1125,1132,1140,1155,1162,1170],{"type":43,"tag":118,"props":1070,"children":1071},{"class":120,"line":121},[1072],{"type":43,"tag":118,"props":1073,"children":1075},{"style":1074},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[1076],{"type":48,"value":1077},"# Initialize plugins\n",{"type":43,"tag":118,"props":1079,"children":1080},{"class":120,"line":130},[1081,1085,1090],{"type":43,"tag":118,"props":1082,"children":1083},{"style":1043},[1084],{"type":48,"value":24},{"type":43,"tag":118,"props":1086,"children":1087},{"style":964},[1088],{"type":48,"value":1089}," init",{"type":43,"tag":118,"props":1091,"children":1092},{"style":964},[1093],{"type":48,"value":1055},{"type":43,"tag":118,"props":1095,"children":1096},{"class":120,"line":139},[1097],{"type":43,"tag":118,"props":1098,"children":1099},{"emptyLinePlaceholder":197},[1100],{"type":48,"value":200},{"type":43,"tag":118,"props":1102,"children":1103},{"class":120,"line":148},[1104],{"type":43,"tag":118,"props":1105,"children":1106},{"style":1074},[1107],{"type":48,"value":1108},"# Validate template\n",{"type":43,"tag":118,"props":1110,"children":1111},{"class":120,"line":157},[1112,1116,1121],{"type":43,"tag":118,"props":1113,"children":1114},{"style":1043},[1115],{"type":48,"value":24},{"type":43,"tag":118,"props":1117,"children":1118},{"style":964},[1119],{"type":48,"value":1120}," validate",{"type":43,"tag":118,"props":1122,"children":1123},{"style":964},[1124],{"type":48,"value":1055},{"type":43,"tag":118,"props":1126,"children":1127},{"class":120,"line":166},[1128],{"type":43,"tag":118,"props":1129,"children":1130},{"emptyLinePlaceholder":197},[1131],{"type":48,"value":200},{"type":43,"tag":118,"props":1133,"children":1134},{"class":120,"line":175},[1135],{"type":43,"tag":118,"props":1136,"children":1137},{"style":1074},[1138],{"type":48,"value":1139},"# Build AMI\n",{"type":43,"tag":118,"props":1141,"children":1142},{"class":120,"line":184},[1143,1147,1151],{"type":43,"tag":118,"props":1144,"children":1145},{"style":1043},[1146],{"type":48,"value":24},{"type":43,"tag":118,"props":1148,"children":1149},{"style":964},[1150],{"type":48,"value":1050},{"type":43,"tag":118,"props":1152,"children":1153},{"style":964},[1154],{"type":48,"value":1055},{"type":43,"tag":118,"props":1156,"children":1157},{"class":120,"line":193},[1158],{"type":43,"tag":118,"props":1159,"children":1160},{"emptyLinePlaceholder":197},[1161],{"type":48,"value":200},{"type":43,"tag":118,"props":1163,"children":1164},{"class":120,"line":203},[1165],{"type":43,"tag":118,"props":1166,"children":1167},{"style":1074},[1168],{"type":48,"value":1169},"# Build with variables\n",{"type":43,"tag":118,"props":1171,"children":1172},{"class":120,"line":212},[1173,1177,1181,1186,1191,1196,1200],{"type":43,"tag":118,"props":1174,"children":1175},{"style":1043},[1176],{"type":48,"value":24},{"type":43,"tag":118,"props":1178,"children":1179},{"style":964},[1180],{"type":48,"value":1050},{"type":43,"tag":118,"props":1182,"children":1183},{"style":964},[1184],{"type":48,"value":1185}," -var",{"type":43,"tag":118,"props":1187,"children":1188},{"style":953},[1189],{"type":48,"value":1190}," \"",{"type":43,"tag":118,"props":1192,"children":1193},{"style":964},[1194],{"type":48,"value":1195},"region=us-east-1",{"type":43,"tag":118,"props":1197,"children":1198},{"style":953},[1199],{"type":48,"value":961},{"type":43,"tag":118,"props":1201,"children":1202},{"style":964},[1203],{"type":48,"value":1055},{"type":43,"tag":100,"props":1205,"children":1207},{"id":1206},"common-issues",[1208],{"type":48,"value":1209},"Common Issues",{"type":43,"tag":51,"props":1211,"children":1212},{},[1213],{"type":43,"tag":69,"props":1214,"children":1215},{},[1216],{"type":48,"value":1217},"SSH Timeout",{"type":43,"tag":1219,"props":1220,"children":1221},"ul",{},[1222,1227],{"type":43,"tag":892,"props":1223,"children":1224},{},[1225],{"type":48,"value":1226},"Ensure security group allows SSH (port 22)",{"type":43,"tag":892,"props":1228,"children":1229},{},[1230],{"type":48,"value":1231},"Verify subnet has internet access",{"type":43,"tag":51,"props":1233,"children":1234},{},[1235],{"type":43,"tag":69,"props":1236,"children":1237},{},[1238],{"type":48,"value":1239},"AMI Already Exists",{"type":43,"tag":1219,"props":1241,"children":1242},{},[1243,1248],{"type":43,"tag":892,"props":1244,"children":1245},{},[1246],{"type":48,"value":1247},"AMI names must be unique",{"type":43,"tag":892,"props":1249,"children":1250},{},[1251,1253],{"type":48,"value":1252},"Use timestamp in name: ",{"type":43,"tag":57,"props":1254,"children":1256},{"className":1255},[],[1257],{"type":48,"value":1258},"my-app-${local.timestamp}",{"type":43,"tag":51,"props":1260,"children":1261},{},[1262],{"type":43,"tag":69,"props":1263,"children":1264},{},[1265],{"type":48,"value":1266},"Volume Size Too Small",{"type":43,"tag":1219,"props":1268,"children":1269},{},[1270,1275],{"type":43,"tag":892,"props":1271,"children":1272},{},[1273],{"type":48,"value":1274},"Check source AMI's volume size",{"type":43,"tag":892,"props":1276,"children":1277},{},[1278,1280,1286],{"type":48,"value":1279},"Set ",{"type":43,"tag":57,"props":1281,"children":1283},{"className":1282},[],[1284],{"type":48,"value":1285},"launch_block_device_mappings.volume_size",{"type":48,"value":1287}," accordingly",{"type":43,"tag":100,"props":1289,"children":1291},{"id":1290},"references",[1292],{"type":48,"value":1293},"References",{"type":43,"tag":1219,"props":1295,"children":1296},{},[1297,1305],{"type":43,"tag":892,"props":1298,"children":1299},{},[1300],{"type":43,"tag":77,"props":1301,"children":1303},{"href":79,"rel":1302},[81],[1304],{"type":48,"value":84},{"type":43,"tag":892,"props":1306,"children":1307},{},[1308],{"type":43,"tag":77,"props":1309,"children":1312},{"href":1310,"rel":1311},"https:\u002F\u002Fdocs.aws.amazon.com\u002FAWSEC2\u002Flatest\u002FUserGuide\u002FAMIs.html",[81],[1313],{"type":48,"value":1314},"AWS AMI Documentation",{"type":43,"tag":1316,"props":1317,"children":1318},"style",{},[1319],{"type":48,"value":1320},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"items":1322,"total":264},[1323,1330,1342,1357,1371,1383,1397],{"slug":4,"name":4,"fn":5,"description":6,"org":1324,"tags":1325,"stars":25,"repoUrl":26,"updatedAt":27},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1326,1327,1328,1329],{"name":20,"slug":21,"type":15},{"name":13,"slug":14,"type":15},{"name":17,"slug":18,"type":15},{"name":23,"slug":24,"type":15},{"slug":1331,"name":1331,"fn":1332,"description":1333,"org":1334,"tags":1335,"stars":25,"repoUrl":26,"updatedAt":1341},"azure-image-builder","build Azure managed images with Packer","Build Azure managed images and Azure Compute Gallery images with Packer. Use when creating custom images for Azure VMs.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1336,1339,1340],{"name":1337,"slug":1338,"type":15},"Azure","azure",{"name":13,"slug":14,"type":15},{"name":23,"slug":24,"type":15},"2026-04-06T18:25:06.590174",{"slug":1343,"name":1343,"fn":1344,"description":1345,"org":1346,"tags":1347,"stars":25,"repoUrl":26,"updatedAt":1356},"azure-verified-modules","develop certified Azure Verified Modules","Azure Verified Modules (AVM) requirements and best practices for developing certified Azure Terraform modules. Use when creating or reviewing Azure modules that need AVM certification.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1348,1349,1352,1353],{"name":1337,"slug":1338,"type":15},{"name":1350,"slug":1351,"type":15},"Compliance","compliance",{"name":17,"slug":18,"type":15},{"name":1354,"slug":1355,"type":15},"Terraform","terraform","2026-04-06T18:25:16.88768",{"slug":1358,"name":1358,"fn":1359,"description":1360,"org":1361,"tags":1362,"stars":25,"repoUrl":26,"updatedAt":1370},"new-terraform-provider","scaffold new Terraform providers","Use this when scaffolding a new Terraform provider.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1363,1366,1369],{"name":1364,"slug":1365,"type":15},"Plugin Development","plugin-development",{"name":1367,"slug":1368,"type":15},"Templates","templates",{"name":1354,"slug":1355,"type":15},"2026-04-06T18:25:11.814973",{"slug":1372,"name":1372,"fn":1373,"description":1374,"org":1375,"tags":1376,"stars":25,"repoUrl":26,"updatedAt":1382},"provider-actions","implement Terraform Provider lifecycle actions","Implement Terraform Provider actions using the Plugin Framework. Use when developing imperative operations that execute at lifecycle events (before\u002Fafter create, update, destroy).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1377,1380,1381],{"name":1378,"slug":1379,"type":15},"API Development","api-development",{"name":1364,"slug":1365,"type":15},{"name":1354,"slug":1355,"type":15},"2026-04-06T18:25:07.880533",{"slug":1384,"name":1384,"fn":1385,"description":1386,"org":1387,"tags":1388,"stars":25,"repoUrl":26,"updatedAt":1396},"provider-docs","generate and review Terraform provider documentation","Create, update, and review Terraform provider documentation for Terraform Registry using HashiCorp-recommended patterns, tfplugindocs templates, and schema descriptions. Use when adding or changing provider configuration, resources, data sources, ephemeral resources, list resources, functions, or guides; when validating generated docs; and when troubleshooting missing or incorrect Registry documentation.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1389,1392,1395],{"name":1390,"slug":1391,"type":15},"Documentation","documentation",{"name":1393,"slug":1394,"type":15},"Technical Writing","technical-writing",{"name":1354,"slug":1355,"type":15},"2026-04-06T18:25:09.261559",{"slug":1398,"name":1398,"fn":1399,"description":1400,"org":1401,"tags":1402,"stars":25,"repoUrl":26,"updatedAt":1406},"provider-resources","implement Terraform Provider resources and data sources","Implement Terraform Provider resources and data sources using the Plugin Framework. Use when developing CRUD operations, schema design, state management, and acceptance testing for provider resources.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1403,1404,1405],{"name":1378,"slug":1379,"type":15},{"name":1364,"slug":1365,"type":15},{"name":1354,"slug":1355,"type":15},"2026-04-06T18:25:10.56237",{"items":1408,"total":272},[1409,1416,1422,1429,1435,1441,1447,1453,1468,1483,1495,1506],{"slug":4,"name":4,"fn":5,"description":6,"org":1410,"tags":1411,"stars":25,"repoUrl":26,"updatedAt":27},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1412,1413,1414,1415],{"name":20,"slug":21,"type":15},{"name":13,"slug":14,"type":15},{"name":17,"slug":18,"type":15},{"name":23,"slug":24,"type":15},{"slug":1331,"name":1331,"fn":1332,"description":1333,"org":1417,"tags":1418,"stars":25,"repoUrl":26,"updatedAt":1341},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1419,1420,1421],{"name":1337,"slug":1338,"type":15},{"name":13,"slug":14,"type":15},{"name":23,"slug":24,"type":15},{"slug":1343,"name":1343,"fn":1344,"description":1345,"org":1423,"tags":1424,"stars":25,"repoUrl":26,"updatedAt":1356},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1425,1426,1427,1428],{"name":1337,"slug":1338,"type":15},{"name":1350,"slug":1351,"type":15},{"name":17,"slug":18,"type":15},{"name":1354,"slug":1355,"type":15},{"slug":1358,"name":1358,"fn":1359,"description":1360,"org":1430,"tags":1431,"stars":25,"repoUrl":26,"updatedAt":1370},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1432,1433,1434],{"name":1364,"slug":1365,"type":15},{"name":1367,"slug":1368,"type":15},{"name":1354,"slug":1355,"type":15},{"slug":1372,"name":1372,"fn":1373,"description":1374,"org":1436,"tags":1437,"stars":25,"repoUrl":26,"updatedAt":1382},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1438,1439,1440],{"name":1378,"slug":1379,"type":15},{"name":1364,"slug":1365,"type":15},{"name":1354,"slug":1355,"type":15},{"slug":1384,"name":1384,"fn":1385,"description":1386,"org":1442,"tags":1443,"stars":25,"repoUrl":26,"updatedAt":1396},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1444,1445,1446],{"name":1390,"slug":1391,"type":15},{"name":1393,"slug":1394,"type":15},{"name":1354,"slug":1355,"type":15},{"slug":1398,"name":1398,"fn":1399,"description":1400,"org":1448,"tags":1449,"stars":25,"repoUrl":26,"updatedAt":1406},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1450,1451,1452],{"name":1378,"slug":1379,"type":15},{"name":1364,"slug":1365,"type":15},{"name":1354,"slug":1355,"type":15},{"slug":1454,"name":1454,"fn":1455,"description":1456,"org":1457,"tags":1458,"stars":25,"repoUrl":26,"updatedAt":1467},"provider-test-patterns","implement Terraform provider acceptance test patterns","Terraform provider acceptance test patterns using terraform-plugin-testing with the Plugin Framework. Covers test structure, TestCase\u002FTestStep fields, ConfigStateChecks with custom statecheck.StateCheck implementations, plan checks, CompareValue for cross-step assertions, config helpers, import testing with ImportStateKind, sweepers, and scenario patterns (basic, update, disappears, validation, regression), and ephemeral resource testing with the echoprovider package. Use when writing, reviewing, or debugging provider acceptance tests, including questions about statecheck, plancheck, TestCheckFunc, CheckDestroy, ExpectError, import state verification, ephemeral resources, or how to structure test files.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1459,1460,1463,1464],{"name":1364,"slug":1365,"type":15},{"name":1461,"slug":1462,"type":15},"QA","qa",{"name":1354,"slug":1355,"type":15},{"name":1465,"slug":1466,"type":15},"Testing","testing","2026-04-06T18:25:14.352781",{"slug":1469,"name":1469,"fn":1470,"description":1471,"org":1472,"tags":1473,"stars":25,"repoUrl":26,"updatedAt":1482},"push-to-registry","push Packer build metadata to HCP registry","Push Packer build metadata to HCP Packer registry for tracking and managing image lifecycle. Use when integrating Packer builds with HCP Packer for version control and governance.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1474,1475,1478,1481],{"name":13,"slug":14,"type":15},{"name":1476,"slug":1477,"type":15},"Governance","governance",{"name":1479,"slug":1480,"type":15},"HCP","hcp",{"name":23,"slug":24,"type":15},"2026-04-06T18:25:02.749563",{"slug":1484,"name":1484,"fn":1485,"description":1486,"org":1487,"tags":1488,"stars":25,"repoUrl":26,"updatedAt":1494},"refactor-module","refactor Terraform configurations into reusable modules","Transform monolithic Terraform configurations into reusable, maintainable modules following HashiCorp's module design principles and community best practices.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1489,1492,1493],{"name":1490,"slug":1491,"type":15},"Architecture","architecture",{"name":17,"slug":18,"type":15},{"name":1354,"slug":1355,"type":15},"2026-04-06T18:25:20.953737",{"slug":1496,"name":1496,"fn":1497,"description":1498,"org":1499,"tags":1500,"stars":25,"repoUrl":26,"updatedAt":1505},"run-acceptance-tests","run acceptance tests for Terraform providers","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`.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1501,1502,1503,1504],{"name":1364,"slug":1365,"type":15},{"name":1461,"slug":1462,"type":15},{"name":1354,"slug":1355,"type":15},{"name":1465,"slug":1466,"type":15},"2026-04-06T18:25:13.098191",{"slug":1507,"name":1507,"fn":1508,"description":1509,"org":1510,"tags":1511,"stars":25,"repoUrl":26,"updatedAt":1518},"terraform-policy","write and test Terraform policy files","Write, test, or convert Terraform Policy files (.policy.hcl, .policytest.hcl, Sentinel→tfpolicy). Triggers: policy.hcl, policytest, convert sentinel, tfpolicy, write a policy.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1512,1513,1514,1517],{"name":1350,"slug":1351,"type":15},{"name":17,"slug":18,"type":15},{"name":1515,"slug":1516,"type":15},"Security","security",{"name":1354,"slug":1355,"type":15},"2026-07-18T05:48:20.299442"]