nix-builder-autoscaler/agent/nix_builder_autoscaler/bootstrap/userdata.py
2026-02-27 11:59:16 +01:00

11 lines
343 B
Python

"""EC2 user-data template rendering — stub for Plan 02."""
from __future__ import annotations
def render_userdata(slot_id: str, region: str, ssm_param: str = "/nix-builder/ts-authkey") -> str:
"""Render a bash user-data script for builder instance bootstrap.
Full implementation in Plan 02.
"""
raise NotImplementedError