> For the complete documentation index, see [llms.txt](https://developer.harness.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://developer.harness.io/continuous-delivery/troubleshooting-and-resources/armory/general/enable-basic-form-authentication-for-spinnaker-via-halyard.md).

# Enable Basic Form Authentication for Spinnaker via Halyard

If you want to enable Simple Auth for Spinnaker using Halyard: Create/update the `.hal//profiles/gate-local.yml` file, with these contents:

```
security.basicform.enabled: true
spring:
  security:
    user:
      name: 
      password: 
```

And then create/update the `.hal//profiles/settings-local.js`, with these contents `window.spinnakerSettings.authEnabled = true;`

Then, apply your change with `hal deploy apply`. To access Spinnaker, you will be prompted with a simple form to enter the username and password.
