Azure / aca-landing-zone-accelerator

The Azure Container Apps landing zone accelerator is an open-source collection of architectural guidance and reference implementation to accelerate deployment of Azure Container Apps at scale.
https://aka.ms/aca-lza
MIT License
180 stars 95 forks source link

Fix: Add support for ssh keys for Linux jumpbox #134

Closed ibersanoMS closed 6 months ago

ibersanoMS commented 6 months ago

Users were unable to use SSH keys for the spoke jumpbox if it is Linux.

Bicep Issue A variable was provided for providing the SSH key value, but there was a check in the VM module for the authentication type, password or sshPublicKey before creating the VM. The default for this variable was set to password and a user was not able to set it through the module as an input.

Resolution

Terraform Issue Had an input variable for SSH keys for the jumpbox, but the module did not have support using the SSH key in creation of the VM.

Resolution

Additional