[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-azure-sdaf-control-plane-bootstrap":3,"mdc-fpyxp7-key":35,"related-repo-azure-sdaf-control-plane-bootstrap":919,"related-org-azure-sdaf-control-plane-bootstrap":1005},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":12,"stars":24,"repoUrl":25,"updatedAt":26,"license":27,"forks":28,"topics":29,"repo":30,"sourceUrl":33,"mdContent":34},"sdaf-control-plane-bootstrap","deploy SDAF control plane infrastructure","Deploy the SDAF control plane locally: prepare DEPLOYER and LIBRARY tfvars, review the plan, run `deploy_controlplane.sh` per `docs\u002Flocal\u002F03-00-control-plane.md § Run`, and validate the deployer + library + state hand-off. Grounded in `docs\u002Flocal\u002F03-00-control-plane.md`. Use when a user says \"deploy the SDAF control plane\", \"run deploy_controlplane.sh\", \"bootstrap SDAF from an empty subscription\", \"install the deployer\" or \"create the SAP library\". Do NOT use for workload zone (see sdaf-workload-zone), SAP system (see sdaf-sap-system), removal (`sdaf-safe-removal`), or Azure Government \u002F sovereign-cloud deltas (`sdaf-sovereign-cloud`).\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},"azure","Azure (Microsoft)","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fazure.png","Azure",[13,15,18,21],{"name":11,"slug":8,"type":14},"tag",{"name":16,"slug":17,"type":14},"Deployment","deployment",{"name":19,"slug":20,"type":14},"SAP","sap",{"name":22,"slug":23,"type":14},"Infrastructure","infrastructure",143,"https:\u002F\u002Fgithub.com\u002FAzure\u002Fsap-automation","2026-09-02T07:46:51.573641","MIT",173,[],{"repoUrl":25,"stars":24,"forks":28,"topics":31,"description":32},[],"This is the repository supporting the SAP deployment automation framework on Azure","https:\u002F\u002Fgithub.com\u002FAzure\u002Fsap-automation\u002Ftree\u002FHEAD\u002Fskills\u002Fsdaf-control-plane-bootstrap","---\nname: sdaf-control-plane-bootstrap\ndescription: >\n  Deploy the SDAF control plane locally: prepare DEPLOYER and LIBRARY tfvars,\n  review the plan, run `deploy_controlplane.sh` per\n  `docs\u002Flocal\u002F03-00-control-plane.md § Run`, and validate the deployer +\n  library + state hand-off. Grounded in `docs\u002Flocal\u002F03-00-control-plane.md`.\n  Use when a user says \"deploy the SDAF control plane\", \"run\n  deploy_controlplane.sh\", \"bootstrap SDAF from an empty subscription\",\n  \"install the deployer\" or \"create the SAP library\". Do NOT use for workload\n  zone (see sdaf-workload-zone), SAP system (see sdaf-sap-system), removal\n  (`sdaf-safe-removal`), or Azure Government \u002F sovereign-cloud deltas\n  (`sdaf-sovereign-cloud`).\nallowed-tools: shell\nlicense: MIT\n---\n\n# SDAF Control Plane Bootstrap\n\nAction-loop skill. Deploys the control plane strictly per\n`docs\u002Flocal\u002F03-00-control-plane.md` for local execution. On ADO \u002F GitHub\nsurfaces, defer stage mechanics to the surface bootstrap plugin — this skill\ncovers the shared control-plane semantics.\n\n## When to invoke\n\nTrigger on: \"deploy the SDAF control plane\", \"run deploy_controlplane.sh\",\n\"install the deployer\", \"create the SAP library\", \"bootstrap SDAF from empty\".\n\nDo NOT trigger on: workload zone, SAP system, software download, install,\nremoval, or state repair.\n\n## Preconditions (documented gates)\n\n- `sdaf-readiness-check` has passed\n  (`docs\u002Flocal\u002F02-00-prepare-execution-environment.md § Readiness verification`;\n  `docs\u002Flocal\u002F03-00-control-plane.md § Before you begin`).\n- Control-plane config files (DEPLOYER + LIBRARY tfvars) are prepared under\n  the documented `WORKSPACES` layout — see `sdaf-workspace-and-tfvars`\n  (`§ Configuration preparation`, `§ Inputs`).\n- The three required env vars are set\n  (`docs\u002Flocal\u002Ftroubleshooting.md § A required export is missing`):\n  `SAP_AUTOMATION_REPO_PATH`, `CONFIG_REPO_PATH`, `ARM_SUBSCRIPTION_ID`.\n\n## Recipe\n\n### Step 1 — Review the tfvars\n\nRe-read the DEPLOYER and LIBRARY tfvars once\n(`docs\u002Flocal\u002F03-00-control-plane.md § Review before execution`). Confirm\nnaming matches `docs\u002Fregion-codes.md § Where the region code appears`.\n\n### Step 2 — Confirm the review gate\n\nDocs require an explicit review before every state-changing step\n(`docs\u002Flocal\u002F03-00-control-plane.md § Review before execution`; `§ Run`).\n\n### Step 3 — Run the documented control-plane deploy\n\nFrom `CONFIG_REPO_PATH`, exactly per\n`docs\u002Flocal\u002F03-00-control-plane.md § Run`:\n\n```bash\nset -e\ncd \"$CONFIG_REPO_PATH\u002FWORKSPACES\"\n\"$SAP_AUTOMATION_REPO_PATH\u002Fdeploy\u002Fscripts\u002Fdeploy_controlplane.sh\" \\\n    --deployer_parameter_file \\\n    \"$CONFIG_REPO_PATH\u002FWORKSPACES\u002FDEPLOYER\u002F\u003CCONTROL_PLANE>-INFRASTRUCTURE\u002F\u003CCONTROL_PLANE>-INFRASTRUCTURE.tfvars\" \\\n    --library_parameter_file \\\n    \"$CONFIG_REPO_PATH\u002FWORKSPACES\u002FLIBRARY\u002F\u003CENVIRONMENT>-\u003CLOCATION>-SAP_LIBRARY\u002F\u003CENVIRONMENT>-\u003CLOCATION>-SAP_LIBRARY.tfvars\" \\\n    --subscription \"$ARM_SUBSCRIPTION_ID\" || {\n  rc=$?\n  echo \"control-plane exit=$rc — route to sdaf-failure-triage\"\n  exit \"$rc\"\n}\n```\n\nDo not claim success unless the exit code is `0` AND the validation checks\nin Step 5 pass. Treat `exit 2` as a validation-gate failure that must not be\nsilenced.\n\n### Step 4 — Do not update SDAF between plan and apply\n\n`docs\u002Flocal\u002F01-00-prerequisites.md § Pin versions`.\n\n### Step 5 — Validate\n\n`docs\u002Flocal\u002F03-00-control-plane.md § Validate` and `§ Outcome`:\n\n- Deployer + library deployed.\n- Terraform state migrated to the library storage account (`tfstate`\n  container) — see `§ What the automation does`.\n- `.sap_deployment_automation` metadata populated (`§ What the automation\n  does`, `§ Validate`).\n- Summary written (`§ Outcome`).\n\n## If the run fails\n\nRoute to **`sdaf-failure-triage`**. It walks\n`docs\u002Flocal\u002Ftroubleshooting.md` and hands back the specific documented\nanchor. Stage-owned preventive checks (that belong here rather than in\ntriage):\n\n- Filename \u002F directory \u002F basename mismatch — fix before rerun\n  (`docs\u002Flocal\u002Ftroubleshooting.md § A parameter file is not found`).\n- Interrupted control-plane rerun with `--recover` — do so only after the\n  state agrees\n  (`docs\u002Flocal\u002Ftroubleshooting.md § A control-plane run stopped partway through`).\n\n## Hard rules\n\n- Documented behaviour only (D19). If a knob is not in the shipped docs or\n  the script's own `--help`, do not describe it.\n- Do not pass `--auto-approve` for reviewed local deployment\n  (`docs\u002Flocal\u002F03-00-control-plane.md § Review before execution`).\n- Do not `--force` casually\n  (`docs\u002Flocal\u002F03-00-control-plane.md § Safe retry`).\n- Repo-wide rules apply: **do not run `terraform fmt`** and follow the\n  Terraform \u002F Ansible \u002F Python guidance in\n  [`.github\u002Fcopilot-instructions.md`](..\u002F..\u002F.github\u002Fcopilot-instructions.md).\n\n## See also\n\n- `sdaf-workspace-and-tfvars`, `sdaf-readiness-check`,\n  `sdaf-workload-zone`, `sdaf-sap-system`, `sdaf-safe-removal`,\n  `sdaf-sovereign-cloud`, `sdaf-failure-triage`.\n- `docs\u002Flocal\u002F03-00-control-plane.md`, `docs\u002Flocal\u002Ftroubleshooting.md`,\n  [`.github\u002Fcopilot-instructions.md`](..\u002F..\u002F.github\u002Fcopilot-instructions.md).",{"data":36,"body":38},{"name":4,"description":6,"allowed-tools":37,"license":27},"shell",{"type":39,"children":40},"root",[41,49,64,71,76,81,87,190,196,203,223,229,248,254,274,549,570,576,586,592,610,673,679,704,739,745,830,836,913],{"type":42,"tag":43,"props":44,"children":45},"element","h1",{"id":4},[46],{"type":47,"value":48},"text","SDAF Control Plane Bootstrap",{"type":42,"tag":50,"props":51,"children":52},"p",{},[53,55,62],{"type":47,"value":54},"Action-loop skill. Deploys the control plane strictly per\n",{"type":42,"tag":56,"props":57,"children":59},"code",{"className":58},[],[60],{"type":47,"value":61},"docs\u002Flocal\u002F03-00-control-plane.md",{"type":47,"value":63}," for local execution. On ADO \u002F GitHub\nsurfaces, defer stage mechanics to the surface bootstrap plugin — this skill\ncovers the shared control-plane semantics.",{"type":42,"tag":65,"props":66,"children":68},"h2",{"id":67},"when-to-invoke",[69],{"type":47,"value":70},"When to invoke",{"type":42,"tag":50,"props":72,"children":73},{},[74],{"type":47,"value":75},"Trigger on: \"deploy the SDAF control plane\", \"run deploy_controlplane.sh\",\n\"install the deployer\", \"create the SAP library\", \"bootstrap SDAF from empty\".",{"type":42,"tag":50,"props":77,"children":78},{},[79],{"type":47,"value":80},"Do NOT trigger on: workload zone, SAP system, software download, install,\nremoval, or state repair.",{"type":42,"tag":65,"props":82,"children":84},{"id":83},"preconditions-documented-gates",[85],{"type":47,"value":86},"Preconditions (documented gates)",{"type":42,"tag":88,"props":89,"children":90},"ul",{},[91,119,155],{"type":42,"tag":92,"props":93,"children":94},"li",{},[95,101,103,109,111,117],{"type":42,"tag":56,"props":96,"children":98},{"className":97},[],[99],{"type":47,"value":100},"sdaf-readiness-check",{"type":47,"value":102}," has passed\n(",{"type":42,"tag":56,"props":104,"children":106},{"className":105},[],[107],{"type":47,"value":108},"docs\u002Flocal\u002F02-00-prepare-execution-environment.md § Readiness verification",{"type":47,"value":110},";\n",{"type":42,"tag":56,"props":112,"children":114},{"className":113},[],[115],{"type":47,"value":116},"docs\u002Flocal\u002F03-00-control-plane.md § Before you begin",{"type":47,"value":118},").",{"type":42,"tag":92,"props":120,"children":121},{},[122,124,130,132,138,140,146,148,154],{"type":47,"value":123},"Control-plane config files (DEPLOYER + LIBRARY tfvars) are prepared under\nthe documented ",{"type":42,"tag":56,"props":125,"children":127},{"className":126},[],[128],{"type":47,"value":129},"WORKSPACES",{"type":47,"value":131}," layout — see ",{"type":42,"tag":56,"props":133,"children":135},{"className":134},[],[136],{"type":47,"value":137},"sdaf-workspace-and-tfvars",{"type":47,"value":139},"\n(",{"type":42,"tag":56,"props":141,"children":143},{"className":142},[],[144],{"type":47,"value":145},"§ Configuration preparation",{"type":47,"value":147},", ",{"type":42,"tag":56,"props":149,"children":151},{"className":150},[],[152],{"type":47,"value":153},"§ Inputs",{"type":47,"value":118},{"type":42,"tag":92,"props":156,"children":157},{},[158,160,166,168,174,175,181,182,188],{"type":47,"value":159},"The three required env vars are set\n(",{"type":42,"tag":56,"props":161,"children":163},{"className":162},[],[164],{"type":47,"value":165},"docs\u002Flocal\u002Ftroubleshooting.md § A required export is missing",{"type":47,"value":167},"):\n",{"type":42,"tag":56,"props":169,"children":171},{"className":170},[],[172],{"type":47,"value":173},"SAP_AUTOMATION_REPO_PATH",{"type":47,"value":147},{"type":42,"tag":56,"props":176,"children":178},{"className":177},[],[179],{"type":47,"value":180},"CONFIG_REPO_PATH",{"type":47,"value":147},{"type":42,"tag":56,"props":183,"children":185},{"className":184},[],[186],{"type":47,"value":187},"ARM_SUBSCRIPTION_ID",{"type":47,"value":189},".",{"type":42,"tag":65,"props":191,"children":193},{"id":192},"recipe",[194],{"type":47,"value":195},"Recipe",{"type":42,"tag":197,"props":198,"children":200},"h3",{"id":199},"step-1-review-the-tfvars",[201],{"type":47,"value":202},"Step 1 — Review the tfvars",{"type":42,"tag":50,"props":204,"children":205},{},[206,208,214,216,222],{"type":47,"value":207},"Re-read the DEPLOYER and LIBRARY tfvars once\n(",{"type":42,"tag":56,"props":209,"children":211},{"className":210},[],[212],{"type":47,"value":213},"docs\u002Flocal\u002F03-00-control-plane.md § Review before execution",{"type":47,"value":215},"). Confirm\nnaming matches ",{"type":42,"tag":56,"props":217,"children":219},{"className":218},[],[220],{"type":47,"value":221},"docs\u002Fregion-codes.md § Where the region code appears",{"type":47,"value":189},{"type":42,"tag":197,"props":224,"children":226},{"id":225},"step-2-confirm-the-review-gate",[227],{"type":47,"value":228},"Step 2 — Confirm the review gate",{"type":42,"tag":50,"props":230,"children":231},{},[232,234,239,241,247],{"type":47,"value":233},"Docs require an explicit review before every state-changing step\n(",{"type":42,"tag":56,"props":235,"children":237},{"className":236},[],[238],{"type":47,"value":213},{"type":47,"value":240},"; ",{"type":42,"tag":56,"props":242,"children":244},{"className":243},[],[245],{"type":47,"value":246},"§ Run",{"type":47,"value":118},{"type":42,"tag":197,"props":249,"children":251},{"id":250},"step-3-run-the-documented-control-plane-deploy",[252],{"type":47,"value":253},"Step 3 — Run the documented control-plane deploy",{"type":42,"tag":50,"props":255,"children":256},{},[257,259,264,266,272],{"type":47,"value":258},"From ",{"type":42,"tag":56,"props":260,"children":262},{"className":261},[],[263],{"type":47,"value":180},{"type":47,"value":265},", exactly per\n",{"type":42,"tag":56,"props":267,"children":269},{"className":268},[],[270],{"type":47,"value":271},"docs\u002Flocal\u002F03-00-control-plane.md § Run",{"type":47,"value":273},":",{"type":42,"tag":275,"props":276,"children":281},"pre",{"className":277,"code":278,"language":279,"meta":280,"style":280},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","set -e\ncd \"$CONFIG_REPO_PATH\u002FWORKSPACES\"\n\"$SAP_AUTOMATION_REPO_PATH\u002Fdeploy\u002Fscripts\u002Fdeploy_controlplane.sh\" \\\n    --deployer_parameter_file \\\n    \"$CONFIG_REPO_PATH\u002FWORKSPACES\u002FDEPLOYER\u002F\u003CCONTROL_PLANE>-INFRASTRUCTURE\u002F\u003CCONTROL_PLANE>-INFRASTRUCTURE.tfvars\" \\\n    --library_parameter_file \\\n    \"$CONFIG_REPO_PATH\u002FWORKSPACES\u002FLIBRARY\u002F\u003CENVIRONMENT>-\u003CLOCATION>-SAP_LIBRARY\u002F\u003CENVIRONMENT>-\u003CLOCATION>-SAP_LIBRARY.tfvars\" \\\n    --subscription \"$ARM_SUBSCRIPTION_ID\" || {\n  rc=$?\n  echo \"control-plane exit=$rc — route to sdaf-failure-triage\"\n  exit \"$rc\"\n}\n","bash","",[282],{"type":42,"tag":56,"props":283,"children":284},{"__ignoreMap":280},[285,303,334,359,372,398,411,436,468,487,519,540],{"type":42,"tag":286,"props":287,"children":290},"span",{"class":288,"line":289},"line",1,[291,297],{"type":42,"tag":286,"props":292,"children":294},{"style":293},"--shiki-light:#6182B8;--shiki-default:#82AAFF;--shiki-dark:#82AAFF",[295],{"type":47,"value":296},"set",{"type":42,"tag":286,"props":298,"children":300},{"style":299},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[301],{"type":47,"value":302}," -e\n",{"type":42,"tag":286,"props":304,"children":306},{"class":288,"line":305},2,[307,312,318,324,329],{"type":42,"tag":286,"props":308,"children":309},{"style":293},[310],{"type":47,"value":311},"cd",{"type":42,"tag":286,"props":313,"children":315},{"style":314},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[316],{"type":47,"value":317}," \"",{"type":42,"tag":286,"props":319,"children":321},{"style":320},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[322],{"type":47,"value":323},"$CONFIG_REPO_PATH",{"type":42,"tag":286,"props":325,"children":326},{"style":299},[327],{"type":47,"value":328},"\u002FWORKSPACES",{"type":42,"tag":286,"props":330,"children":331},{"style":314},[332],{"type":47,"value":333},"\"\n",{"type":42,"tag":286,"props":335,"children":337},{"class":288,"line":336},3,[338,344,349,354],{"type":42,"tag":286,"props":339,"children":341},{"style":340},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[342],{"type":47,"value":343},"\"",{"type":42,"tag":286,"props":345,"children":346},{"style":320},[347],{"type":47,"value":348},"$SAP_AUTOMATION_REPO_PATH",{"type":42,"tag":286,"props":350,"children":351},{"style":340},[352],{"type":47,"value":353},"\u002Fdeploy\u002Fscripts\u002Fdeploy_controlplane.sh\"",{"type":42,"tag":286,"props":355,"children":356},{"style":320},[357],{"type":47,"value":358}," \\\n",{"type":42,"tag":286,"props":360,"children":362},{"class":288,"line":361},4,[363,368],{"type":42,"tag":286,"props":364,"children":365},{"style":299},[366],{"type":47,"value":367},"    --deployer_parameter_file",{"type":42,"tag":286,"props":369,"children":370},{"style":320},[371],{"type":47,"value":358},{"type":42,"tag":286,"props":373,"children":375},{"class":288,"line":374},5,[376,381,385,390,394],{"type":42,"tag":286,"props":377,"children":378},{"style":314},[379],{"type":47,"value":380},"    \"",{"type":42,"tag":286,"props":382,"children":383},{"style":320},[384],{"type":47,"value":323},{"type":42,"tag":286,"props":386,"children":387},{"style":299},[388],{"type":47,"value":389},"\u002FWORKSPACES\u002FDEPLOYER\u002F\u003CCONTROL_PLANE>-INFRASTRUCTURE\u002F\u003CCONTROL_PLANE>-INFRASTRUCTURE.tfvars",{"type":42,"tag":286,"props":391,"children":392},{"style":314},[393],{"type":47,"value":343},{"type":42,"tag":286,"props":395,"children":396},{"style":320},[397],{"type":47,"value":358},{"type":42,"tag":286,"props":399,"children":401},{"class":288,"line":400},6,[402,407],{"type":42,"tag":286,"props":403,"children":404},{"style":299},[405],{"type":47,"value":406},"    --library_parameter_file",{"type":42,"tag":286,"props":408,"children":409},{"style":320},[410],{"type":47,"value":358},{"type":42,"tag":286,"props":412,"children":414},{"class":288,"line":413},7,[415,419,423,428,432],{"type":42,"tag":286,"props":416,"children":417},{"style":314},[418],{"type":47,"value":380},{"type":42,"tag":286,"props":420,"children":421},{"style":320},[422],{"type":47,"value":323},{"type":42,"tag":286,"props":424,"children":425},{"style":299},[426],{"type":47,"value":427},"\u002FWORKSPACES\u002FLIBRARY\u002F\u003CENVIRONMENT>-\u003CLOCATION>-SAP_LIBRARY\u002F\u003CENVIRONMENT>-\u003CLOCATION>-SAP_LIBRARY.tfvars",{"type":42,"tag":286,"props":429,"children":430},{"style":314},[431],{"type":47,"value":343},{"type":42,"tag":286,"props":433,"children":434},{"style":320},[435],{"type":47,"value":358},{"type":42,"tag":286,"props":437,"children":439},{"class":288,"line":438},8,[440,445,449,454,458,463],{"type":42,"tag":286,"props":441,"children":442},{"style":299},[443],{"type":47,"value":444},"    --subscription",{"type":42,"tag":286,"props":446,"children":447},{"style":314},[448],{"type":47,"value":317},{"type":42,"tag":286,"props":450,"children":451},{"style":320},[452],{"type":47,"value":453},"$ARM_SUBSCRIPTION_ID",{"type":42,"tag":286,"props":455,"children":456},{"style":314},[457],{"type":47,"value":343},{"type":42,"tag":286,"props":459,"children":460},{"style":314},[461],{"type":47,"value":462}," ||",{"type":42,"tag":286,"props":464,"children":465},{"style":314},[466],{"type":47,"value":467}," {\n",{"type":42,"tag":286,"props":469,"children":471},{"class":288,"line":470},9,[472,477,482],{"type":42,"tag":286,"props":473,"children":474},{"style":320},[475],{"type":47,"value":476},"  rc",{"type":42,"tag":286,"props":478,"children":479},{"style":314},[480],{"type":47,"value":481},"=",{"type":42,"tag":286,"props":483,"children":484},{"style":320},[485],{"type":47,"value":486},"$?\n",{"type":42,"tag":286,"props":488,"children":490},{"class":288,"line":489},10,[491,496,500,505,510,515],{"type":42,"tag":286,"props":492,"children":493},{"style":293},[494],{"type":47,"value":495},"  echo",{"type":42,"tag":286,"props":497,"children":498},{"style":314},[499],{"type":47,"value":317},{"type":42,"tag":286,"props":501,"children":502},{"style":299},[503],{"type":47,"value":504},"control-plane exit=",{"type":42,"tag":286,"props":506,"children":507},{"style":320},[508],{"type":47,"value":509},"$rc",{"type":42,"tag":286,"props":511,"children":512},{"style":299},[513],{"type":47,"value":514}," — route to sdaf-failure-triage",{"type":42,"tag":286,"props":516,"children":517},{"style":314},[518],{"type":47,"value":333},{"type":42,"tag":286,"props":520,"children":522},{"class":288,"line":521},11,[523,528,532,536],{"type":42,"tag":286,"props":524,"children":525},{"style":293},[526],{"type":47,"value":527},"  exit",{"type":42,"tag":286,"props":529,"children":530},{"style":314},[531],{"type":47,"value":317},{"type":42,"tag":286,"props":533,"children":534},{"style":320},[535],{"type":47,"value":509},{"type":42,"tag":286,"props":537,"children":538},{"style":314},[539],{"type":47,"value":333},{"type":42,"tag":286,"props":541,"children":543},{"class":288,"line":542},12,[544],{"type":42,"tag":286,"props":545,"children":546},{"style":314},[547],{"type":47,"value":548},"}\n",{"type":42,"tag":50,"props":550,"children":551},{},[552,554,560,562,568],{"type":47,"value":553},"Do not claim success unless the exit code is ",{"type":42,"tag":56,"props":555,"children":557},{"className":556},[],[558],{"type":47,"value":559},"0",{"type":47,"value":561}," AND the validation checks\nin Step 5 pass. Treat ",{"type":42,"tag":56,"props":563,"children":565},{"className":564},[],[566],{"type":47,"value":567},"exit 2",{"type":47,"value":569}," as a validation-gate failure that must not be\nsilenced.",{"type":42,"tag":197,"props":571,"children":573},{"id":572},"step-4-do-not-update-sdaf-between-plan-and-apply",[574],{"type":47,"value":575},"Step 4 — Do not update SDAF between plan and apply",{"type":42,"tag":50,"props":577,"children":578},{},[579,585],{"type":42,"tag":56,"props":580,"children":582},{"className":581},[],[583],{"type":47,"value":584},"docs\u002Flocal\u002F01-00-prerequisites.md § Pin versions",{"type":47,"value":189},{"type":42,"tag":197,"props":587,"children":589},{"id":588},"step-5-validate",[590],{"type":47,"value":591},"Step 5 — Validate",{"type":42,"tag":50,"props":593,"children":594},{},[595,601,603,609],{"type":42,"tag":56,"props":596,"children":598},{"className":597},[],[599],{"type":47,"value":600},"docs\u002Flocal\u002F03-00-control-plane.md § Validate",{"type":47,"value":602}," and ",{"type":42,"tag":56,"props":604,"children":606},{"className":605},[],[607],{"type":47,"value":608},"§ Outcome",{"type":47,"value":273},{"type":42,"tag":88,"props":611,"children":612},{},[613,618,638,662],{"type":42,"tag":92,"props":614,"children":615},{},[616],{"type":47,"value":617},"Deployer + library deployed.",{"type":42,"tag":92,"props":619,"children":620},{},[621,623,629,631,637],{"type":47,"value":622},"Terraform state migrated to the library storage account (",{"type":42,"tag":56,"props":624,"children":626},{"className":625},[],[627],{"type":47,"value":628},"tfstate",{"type":47,"value":630},"\ncontainer) — see ",{"type":42,"tag":56,"props":632,"children":634},{"className":633},[],[635],{"type":47,"value":636},"§ What the automation does",{"type":47,"value":189},{"type":42,"tag":92,"props":639,"children":640},{},[641,647,649,654,655,661],{"type":42,"tag":56,"props":642,"children":644},{"className":643},[],[645],{"type":47,"value":646},".sap_deployment_automation",{"type":47,"value":648}," metadata populated (",{"type":42,"tag":56,"props":650,"children":652},{"className":651},[],[653],{"type":47,"value":636},{"type":47,"value":147},{"type":42,"tag":56,"props":656,"children":658},{"className":657},[],[659],{"type":47,"value":660},"§ Validate",{"type":47,"value":118},{"type":42,"tag":92,"props":663,"children":664},{},[665,667,672],{"type":47,"value":666},"Summary written (",{"type":42,"tag":56,"props":668,"children":670},{"className":669},[],[671],{"type":47,"value":608},{"type":47,"value":118},{"type":42,"tag":65,"props":674,"children":676},{"id":675},"if-the-run-fails",[677],{"type":47,"value":678},"If the run fails",{"type":42,"tag":50,"props":680,"children":681},{},[682,684,694,696,702],{"type":47,"value":683},"Route to ",{"type":42,"tag":685,"props":686,"children":687},"strong",{},[688],{"type":42,"tag":56,"props":689,"children":691},{"className":690},[],[692],{"type":47,"value":693},"sdaf-failure-triage",{"type":47,"value":695},". It walks\n",{"type":42,"tag":56,"props":697,"children":699},{"className":698},[],[700],{"type":47,"value":701},"docs\u002Flocal\u002Ftroubleshooting.md",{"type":47,"value":703}," and hands back the specific documented\nanchor. Stage-owned preventive checks (that belong here rather than in\ntriage):",{"type":42,"tag":88,"props":705,"children":706},{},[707,719],{"type":42,"tag":92,"props":708,"children":709},{},[710,712,718],{"type":47,"value":711},"Filename \u002F directory \u002F basename mismatch — fix before rerun\n(",{"type":42,"tag":56,"props":713,"children":715},{"className":714},[],[716],{"type":47,"value":717},"docs\u002Flocal\u002Ftroubleshooting.md § A parameter file is not found",{"type":47,"value":118},{"type":42,"tag":92,"props":720,"children":721},{},[722,724,730,732,738],{"type":47,"value":723},"Interrupted control-plane rerun with ",{"type":42,"tag":56,"props":725,"children":727},{"className":726},[],[728],{"type":47,"value":729},"--recover",{"type":47,"value":731}," — do so only after the\nstate agrees\n(",{"type":42,"tag":56,"props":733,"children":735},{"className":734},[],[736],{"type":47,"value":737},"docs\u002Flocal\u002Ftroubleshooting.md § A control-plane run stopped partway through",{"type":47,"value":118},{"type":42,"tag":65,"props":740,"children":742},{"id":741},"hard-rules",[743],{"type":47,"value":744},"Hard rules",{"type":42,"tag":88,"props":746,"children":747},{},[748,761,780,800],{"type":42,"tag":92,"props":749,"children":750},{},[751,753,759],{"type":47,"value":752},"Documented behaviour only (D19). If a knob is not in the shipped docs or\nthe script's own ",{"type":42,"tag":56,"props":754,"children":756},{"className":755},[],[757],{"type":47,"value":758},"--help",{"type":47,"value":760},", do not describe it.",{"type":42,"tag":92,"props":762,"children":763},{},[764,766,772,774,779],{"type":47,"value":765},"Do not pass ",{"type":42,"tag":56,"props":767,"children":769},{"className":768},[],[770],{"type":47,"value":771},"--auto-approve",{"type":47,"value":773}," for reviewed local deployment\n(",{"type":42,"tag":56,"props":775,"children":777},{"className":776},[],[778],{"type":47,"value":213},{"type":47,"value":118},{"type":42,"tag":92,"props":781,"children":782},{},[783,785,791,793,799],{"type":47,"value":784},"Do not ",{"type":42,"tag":56,"props":786,"children":788},{"className":787},[],[789],{"type":47,"value":790},"--force",{"type":47,"value":792}," casually\n(",{"type":42,"tag":56,"props":794,"children":796},{"className":795},[],[797],{"type":47,"value":798},"docs\u002Flocal\u002F03-00-control-plane.md § Safe retry",{"type":47,"value":118},{"type":42,"tag":92,"props":801,"children":802},{},[803,805,816,818,829],{"type":47,"value":804},"Repo-wide rules apply: ",{"type":42,"tag":685,"props":806,"children":807},{},[808,810],{"type":47,"value":809},"do not run ",{"type":42,"tag":56,"props":811,"children":813},{"className":812},[],[814],{"type":47,"value":815},"terraform fmt",{"type":47,"value":817}," and follow the\nTerraform \u002F Ansible \u002F Python guidance in\n",{"type":42,"tag":819,"props":820,"children":822},"a",{"href":821},"..\u002F..\u002F.github\u002Fcopilot-instructions.md",[823],{"type":42,"tag":56,"props":824,"children":826},{"className":825},[],[827],{"type":47,"value":828},".github\u002Fcopilot-instructions.md",{"type":47,"value":189},{"type":42,"tag":65,"props":831,"children":833},{"id":832},"see-also",[834],{"type":47,"value":835},"See also",{"type":42,"tag":88,"props":837,"children":838},{},[839,889],{"type":42,"tag":92,"props":840,"children":841},{},[842,847,848,853,855,861,862,868,869,875,876,882,883,888],{"type":42,"tag":56,"props":843,"children":845},{"className":844},[],[846],{"type":47,"value":137},{"type":47,"value":147},{"type":42,"tag":56,"props":849,"children":851},{"className":850},[],[852],{"type":47,"value":100},{"type":47,"value":854},",\n",{"type":42,"tag":56,"props":856,"children":858},{"className":857},[],[859],{"type":47,"value":860},"sdaf-workload-zone",{"type":47,"value":147},{"type":42,"tag":56,"props":863,"children":865},{"className":864},[],[866],{"type":47,"value":867},"sdaf-sap-system",{"type":47,"value":147},{"type":42,"tag":56,"props":870,"children":872},{"className":871},[],[873],{"type":47,"value":874},"sdaf-safe-removal",{"type":47,"value":854},{"type":42,"tag":56,"props":877,"children":879},{"className":878},[],[880],{"type":47,"value":881},"sdaf-sovereign-cloud",{"type":47,"value":147},{"type":42,"tag":56,"props":884,"children":886},{"className":885},[],[887],{"type":47,"value":693},{"type":47,"value":189},{"type":42,"tag":92,"props":890,"children":891},{},[892,897,898,903,904,912],{"type":42,"tag":56,"props":893,"children":895},{"className":894},[],[896],{"type":47,"value":61},{"type":47,"value":147},{"type":42,"tag":56,"props":899,"children":901},{"className":900},[],[902],{"type":47,"value":701},{"type":47,"value":854},{"type":42,"tag":819,"props":905,"children":906},{"href":821},[907],{"type":42,"tag":56,"props":908,"children":910},{"className":909},[],[911],{"type":47,"value":828},{"type":47,"value":189},{"type":42,"tag":914,"props":915,"children":916},"style",{},[917],{"type":47,"value":918},"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":920,"total":1004},[921,933,940,957,968,981,991],{"slug":922,"name":922,"fn":923,"description":924,"org":925,"tags":926,"stars":24,"repoUrl":25,"updatedAt":932},"sdaf-bom-selection","select SAP Bill of Materials","Pick the right SDAF BOM for a target SAP product \u002F release \u002F DB platform \u002F version \u002F kernel \u002F topology. Explains where BOMs live in the samples repo (`SAP\u002F` for whole products, `BOM\u002F` for components), decodes the `ms`, `v####`, and `latest` suffix conventions, points at the compatibility guardrails (`supportedPlatforms`, `supportedDBVersions`, `supportedKernels`), and reminds the operator that the download flow needs four explicit BOM keys in `sap-parameters.yaml`. Use when a user says \"which BOM do I use\", \"product BOM vs component BOM\", \"SAP samples BOM catalog\", \"BOM_CATALOG\", \"S4\u002F2023 BOM\", \"HANA BOM\", or \"how do I pick a BOM for HANA\u002FOracle\u002FDB2\u002FASE\". Do NOT use to author a new BOM, to acquire media (`sdaf-media-acquisition`), or to troubleshoot a checksum \u002F 404 (`sdaf-media-diagnostics`).\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[927,928,931],{"name":11,"slug":8,"type":14},{"name":929,"slug":930,"type":14},"Configuration","configuration",{"name":19,"slug":20,"type":14},"2026-09-02T07:47:45.597063",{"slug":4,"name":4,"fn":5,"description":6,"org":934,"tags":935,"stars":24,"repoUrl":25,"updatedAt":26},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[936,937,938,939],{"name":11,"slug":8,"type":14},{"name":16,"slug":17,"type":14},{"name":22,"slug":23,"type":14},{"name":19,"slug":20,"type":14},{"slug":693,"name":693,"fn":941,"description":942,"org":943,"tags":944,"stars":24,"repoUrl":25,"updatedAt":956},"triage failed SAP automation runs","Triage a failed or suspicious SDAF run: distinguish a real failure from a green no-op or a clean plan reported as failure, map the observed symptom to a documented cause in `docs\u002Flocal\u002Ftroubleshooting.md`, and hand off to the stage-owning skill for retry. Use when a user says \"SDAF run failed\", \"my deploy exited non-zero\", \"the plan was clean but exit 1\", \"the run said success but nothing was deployed\", \"state lock error\", \"unexpected replacement\", \"control plane stopped partway\", \"generated hosts.yaml missing\", \"workload-zone private endpoint failure\", \"workload-zone subnet policy failure\", or \"SDAF exit 2\". Do NOT use to actually deploy or to redesign the workspace layout.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[945,946,949,952,953],{"name":11,"slug":8,"type":14},{"name":947,"slug":948,"type":14},"Diagnostics","diagnostics",{"name":950,"slug":951,"type":14},"Operations","operations",{"name":19,"slug":20,"type":14},{"name":954,"slug":955,"type":14},"Triage","triage","2026-09-02T07:47:40.607437",{"slug":958,"name":958,"fn":959,"description":960,"org":961,"tags":962,"stars":24,"repoUrl":25,"updatedAt":967},"sdaf-ha-diagnostics","diagnose SDAF high-availability cluster failures","Diagnose a live or recently failed SDAF high-availability cluster without changing cluster state. Start read-first: capture `crm status full` or `pcs status --full`, inspect SBD or fencing evidence, confirm current resource placement, and reuse existing quality-assurance or HCMT artifacts. Grounded in `docs\u002Flocal\u002F07-10-quality-assurance.md`, the shipped Pacemaker role vars\u002Ftasks, and the SAP Automation QA setup role. Use when a user says \"diagnose my HANA failover\", \"crm status\", \"pcs status\", \"check fencing\", \"why is the SCS\u002FERS cluster unhealthy\", \"offline_validation\u002Fcib\", or \"review an HCMT result zip\". Do NOT use for pre-deploy topology or design choices (see `sdaf-ha-topology`), fresh installation\u002Fdeploy, or disruptive failover\u002Ffencing exercises (see `sdaf-quality-assurance`).\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[963,964,965,966],{"name":11,"slug":8,"type":14},{"name":947,"slug":948,"type":14},{"name":950,"slug":951,"type":14},{"name":19,"slug":20,"type":14},"2026-09-02T07:48:04.154501",{"slug":969,"name":969,"fn":970,"description":971,"org":972,"tags":973,"stars":24,"repoUrl":25,"updatedAt":980},"sdaf-ha-topology","design high-availability SAP topologies","Choose the documented SDAF high-availability design before SAP-system deployment. Use when a user asks which HA topology to deploy, whether to use AFA or SBD, AFS or ANF, HANA scale-up or scale-out, whether ANGI is allowed, or which HA inputs must be set before deployment. Ground answers in the current support matrix, Ansible roles, sample tfvars, and validation logic. Do NOT use for live cluster diagnosis (sdaf-ha-diagnostics) or for running the installers (sdaf-sap-installation).\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[974,977,978,979],{"name":975,"slug":976,"type":14},"Architecture","architecture",{"name":11,"slug":8,"type":14},{"name":22,"slug":23,"type":14},{"name":19,"slug":20,"type":14},"2026-09-02T07:47:43.405138",{"slug":982,"name":982,"fn":983,"description":984,"org":985,"tags":986,"stars":24,"repoUrl":25,"updatedAt":990},"sdaf-media-acquisition","acquire SAP installation media","Acquire approved SAP media into the SDAF library after SAP-system infrastructure exists. Drives local `deploy\u002Fansible\u002Fdownload_menu.sh` per `docs\u002Flocal\u002F06-00-software-and-installation.md § Download software`, enforces the documented `BOM_CATALOG` root and the four required `sap-parameters.yaml` BOM keys (`application_bom_name`, `database_bom_name`, `sap_kernel_bom_name`, `save_bom_as`), and explains the documented download and validation flow. Use for \"download SAP media\", \"run download_menu.sh\", \"acquire software into the library\", \"BOM Downloader\", \"BOM_CATALOG\", or \"assemble application\u002Fdatabase\u002Fkernel BOMs for download\". Do NOT use to choose a BOM, troubleshoot a failed download, or run installation playbooks.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[987,988,989],{"name":11,"slug":8,"type":14},{"name":950,"slug":951,"type":14},{"name":19,"slug":20,"type":14},"2026-09-02T07:46:44.504107",{"slug":992,"name":992,"fn":993,"description":994,"org":995,"tags":996,"stars":24,"repoUrl":25,"updatedAt":1003},"sdaf-media-diagnostics","diagnose SDAF media and BOM processing","Diagnose SDAF software-download and BOM-processing failures after a BOM is already selected. Covers the documented local media path, SAP download, storage-account upload\u002Fdownload, checksum validation, and `SAPCAR` \u002F `.EXE` extraction. Use when a user says \"download_menu failed\", \"BOM downloader 404\", \"missing archive\", \"checksum mismatch\", \"SAPCAR failed\", \"bom-processing-done missing\", or \"my SPS07 media run can't find a file\". Do NOT use to choose a BOM (see `sdaf-bom-selection`), to run a clean first-time media download with no failure, or to diagnose a later non-media install failure.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[997,998,999,1000],{"name":11,"slug":8,"type":14},{"name":947,"slug":948,"type":14},{"name":19,"slug":20,"type":14},{"name":1001,"slug":1002,"type":14},"Storage","storage","2026-09-02T07:48:06.369058",18,{"items":1006,"total":1137},[1007,1026,1043,1049,1056,1064,1071,1078,1084,1091,1104,1124],{"slug":1008,"name":1008,"fn":1009,"description":1010,"org":1011,"tags":1012,"stars":1023,"repoUrl":1024,"updatedAt":1025},"azure-arg-external-evaluation-policy-author","author and test Azure Resource Graph policies","Use when the user wants to author, design, or test an Azure Policy that queries Azure Resource Graph (ARG) at request-time — i.e. a policy whose deny\u002Faudit decision depends on data from elsewhere in the subscription (sibling\u002Fparent resource state, RG-wide invariants, multi-hop relationships, etc.). Formally called Azure Policy External Evaluation; sometimes referred to colloquially as \"Invoke\". Drives an iterative KQL co-design loop against the user's real subscription via `az graph query`, then emits a policy definition, assignment, `.http` test flow, and an `EXPLANATION.md` companion. Read-only; never provisions anything.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1013,1014,1017,1020],{"name":11,"slug":8,"type":14},{"name":1015,"slug":1016,"type":14},"Compliance","compliance",{"name":1018,"slug":1019,"type":14},"Governance","governance",{"name":1021,"slug":1022,"type":14},"Policy","policy",1689,"https:\u002F\u002Fgithub.com\u002FAzure\u002Fazure-policy","2026-07-12T08:17:48.378432",{"slug":1027,"name":1027,"fn":1028,"description":1029,"org":1030,"tags":1031,"stars":1040,"repoUrl":1041,"updatedAt":1042},"azure-blueprints-migration","migrate Azure Blueprints to Template Specs","Use when a user needs to migrate off Azure Blueprints (definitions and\u002For assignments) to Template Specs and Deployment Stacks before the January 31, 2027 retirement. Covers inventory, export, conversion to Bicep, policy decoupling, Template Spec publishing, Deployment Stack deployment with deny-settings, validation, and cutover.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1032,1033,1034,1037],{"name":11,"slug":8,"type":14},{"name":16,"slug":17,"type":14},{"name":1035,"slug":1036,"type":14},"Infrastructure as Code","infrastructure-as-code",{"name":1038,"slug":1039,"type":14},"Migration","migration",261,"https:\u002F\u002Fgithub.com\u002FAzure\u002Fazure-blueprints","2026-08-20T03:28:18.136156",{"slug":922,"name":922,"fn":923,"description":924,"org":1044,"tags":1045,"stars":24,"repoUrl":25,"updatedAt":932},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1046,1047,1048],{"name":11,"slug":8,"type":14},{"name":929,"slug":930,"type":14},{"name":19,"slug":20,"type":14},{"slug":4,"name":4,"fn":5,"description":6,"org":1050,"tags":1051,"stars":24,"repoUrl":25,"updatedAt":26},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1052,1053,1054,1055],{"name":11,"slug":8,"type":14},{"name":16,"slug":17,"type":14},{"name":22,"slug":23,"type":14},{"name":19,"slug":20,"type":14},{"slug":693,"name":693,"fn":941,"description":942,"org":1057,"tags":1058,"stars":24,"repoUrl":25,"updatedAt":956},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1059,1060,1061,1062,1063],{"name":11,"slug":8,"type":14},{"name":947,"slug":948,"type":14},{"name":950,"slug":951,"type":14},{"name":19,"slug":20,"type":14},{"name":954,"slug":955,"type":14},{"slug":958,"name":958,"fn":959,"description":960,"org":1065,"tags":1066,"stars":24,"repoUrl":25,"updatedAt":967},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1067,1068,1069,1070],{"name":11,"slug":8,"type":14},{"name":947,"slug":948,"type":14},{"name":950,"slug":951,"type":14},{"name":19,"slug":20,"type":14},{"slug":969,"name":969,"fn":970,"description":971,"org":1072,"tags":1073,"stars":24,"repoUrl":25,"updatedAt":980},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1074,1075,1076,1077],{"name":975,"slug":976,"type":14},{"name":11,"slug":8,"type":14},{"name":22,"slug":23,"type":14},{"name":19,"slug":20,"type":14},{"slug":982,"name":982,"fn":983,"description":984,"org":1079,"tags":1080,"stars":24,"repoUrl":25,"updatedAt":990},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1081,1082,1083],{"name":11,"slug":8,"type":14},{"name":950,"slug":951,"type":14},{"name":19,"slug":20,"type":14},{"slug":992,"name":992,"fn":993,"description":994,"org":1085,"tags":1086,"stars":24,"repoUrl":25,"updatedAt":1003},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1087,1088,1089,1090],{"name":11,"slug":8,"type":14},{"name":947,"slug":948,"type":14},{"name":19,"slug":20,"type":14},{"name":1001,"slug":1002,"type":14},{"slug":1092,"name":1092,"fn":1093,"description":1094,"org":1095,"tags":1096,"stars":24,"repoUrl":25,"updatedAt":1103},"sdaf-orientation-and-surface","orient users to SDAF architecture","Orient a newcomer to the SAP Deployment Automation Framework (SDAF): explain the spine (control plane → workload zone → SAP system → software → install → operate\u002Fremove), summarise the three execution surfaces (Local, Azure DevOps, GitHub Actions), and print the install command for the matching surface bootstrap plugin — as documented in this repository's `docs\u002FPLUGINS.md` — so the operator can run it manually. Use when a user says \"what is SDAF\", \"how is SDAF structured\", \"where do I start with SDAF\", \"which surface should I use\", \"SDAF Local vs ADO vs GitHub\", \"workstation vs Azure Pipelines vs GitHub workflows\", \"how do I install the SDAF ADO\u002FGitHub plugin\", or \"I'm new to SDAF\". Do NOT use for readiness pre-flight (see sdaf-readiness-check), workspace\u002Ftfvars layout (see sdaf-workspace-and-tfvars), or troubleshooting a failed run (see sdaf-failure-triage).\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1097,1098,1099,1102],{"name":975,"slug":976,"type":14},{"name":11,"slug":8,"type":14},{"name":1100,"slug":1101,"type":14},"Documentation","documentation",{"name":19,"slug":20,"type":14},"2026-09-02T07:46:52.116557",{"slug":1105,"name":1105,"fn":1106,"description":1107,"org":1108,"tags":1109,"stars":24,"repoUrl":25,"updatedAt":1123},"sdaf-plan-and-test-semantics","manage SDAF plan and test semantics","Explain SDAF plan-only \u002F test \u002F apply semantics without pretending they are universal. Compares the documented Local commands, Azure DevOps wrapper pipelines, and GitHub Actions workflows for control plane, workload zone, and SAP system: local stage commands show Terraform plans and then apply after approval; ADO\u002FGitHub workload-zone and SAP-system test runs stop after the plan; the current hosted control-plane test options do not provide a plan-only run. Use when a user says \"what does test do in SDAF\", \"is this a real dry run\", \"plan-only vs apply\", \"workflow 01 dry-run\", \"pipeline 02 test\", or \"TEST_ONLY\". Do NOT use to actually deploy a stage or to triage a failed run (see sdaf-control-plane-bootstrap \u002F sdaf-workload-zone \u002F sdaf-sap-system \u002F sdaf-failure-triage).\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1110,1113,1114,1117,1120],{"name":1111,"slug":1112,"type":14},"Automation","automation",{"name":11,"slug":8,"type":14},{"name":1115,"slug":1116,"type":14},"Azure DevOps","azure-devops",{"name":1118,"slug":1119,"type":14},"CI\u002FCD","ci-cd",{"name":1121,"slug":1122,"type":14},"GitHub Actions","github-actions","2026-09-02T07:48:08.951811",{"slug":1125,"name":1125,"fn":1126,"description":1127,"org":1128,"tags":1129,"stars":24,"repoUrl":25,"updatedAt":1136},"sdaf-quality-assurance","validate deployed SDAF SAP systems","Validate a deployed SDAF SAP system through the SDAF-owned QA entry points: the local quality-assurance menu and the documented Azure DevOps pipeline 13 path. Choose configuration checks vs functional tests, apply `TEST_GROUPS` \u002F `TEST_CASES` safely, interpret `quality_assurance\u002F` and `logs\u002F`, and enforce the documented boundary that the GitHub Actions wrapper is still pending. Use when a user says \"run quality assurance\", \"run configuration checks\", \"pipeline 13 QA\", \"offline HA validation\", or \"why does the report say No test results found\". Do NOT use to deploy the SAP system or generate `sap-parameters.yaml` \u002F `\u003CSID>_hosts.yaml` (see `sdaf-sap-system`), or for a generic failed-run report with no QA-stage context (see `sdaf-failure-triage`).\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1130,1131,1132,1135],{"name":1111,"slug":1112,"type":14},{"name":11,"slug":8,"type":14},{"name":1133,"slug":1134,"type":14},"Quality Assurance","quality-assurance",{"name":19,"slug":20,"type":14},"2026-09-02T07:46:49.932123",145]