| 1234567891011121314 |
- from __future__ import annotations
- from ..core.module import Module
- from ..core.registry import registry
- class PackerModule(Module):
- """Module for managing Packer templates and configurations."""
-
- name: str = "packer"
- description: str = "Manage Packer templates and configurations"
- files: list[str] = ["template.pkr.hcl", "build.pkr.hcl", "variables.pkr.hcl", "sources.pkr.hcl"]
- # Register the module
- registry.register(PackerModule)
|