Skip to main content
Solved

How to add apphosting capability to YAML infrastructure code?

  • June 4, 2026
  • 2 replies
  • 47 views

Under the admin panel, in “Access Management” you are able to modify a group to provide them capabilities to access the new Flows apps, e.g., “apphosting”. By adding the read and run capabilities we have confirmed it is possible for users with these to see and run the apps.We want to replicate this in the infrastructure code, and have attempted to add “apphostingAcl” with actions for

      - apphostingAcl:
actions:
- READ
- RUN
scope:
all: {}

 

However, when attempting to deploy this to a project:

cdf deploy $(pwd)/build-qa


The following error is received for the command

API error: Request failed with status code 400: Unknown field name:

`apphostingAcl` at items.capabilities[15].?.

The request body and response has been written to

deploy_logs_2026-06-04/2026-06-04T06_49_09.086412+00_00.json for debugging

purposes.

 

When attempting to consult the documentation, I could not find a reference for this. So is this currently possible in the latest Toolkit version? (0.8.102)

Best answer by Gaetan Helness

Hi, can you try using `appHostingAcl`
It is most likely case sensitive

2 replies

Gaetan  Helness
MVP ⭐️⭐️⭐️⭐️⭐️
Forum|alt.badge.img+2
  • MVP ⭐️⭐️⭐️⭐️⭐️
  • Answer
  • June 4, 2026

Hi, can you try using `appHostingAcl`
It is most likely case sensitive


  • Author
  • Seasoned ⭐️⭐️⭐️
  • June 4, 2026

Yes that was indeed the issue. Thank you!