Skip to content

Instantly share code, notes, and snippets.

@jesseloudon
Created November 9, 2020 23:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jesseloudon/0d3dc1d6034a72cf620e1cc6e3d02d6a to your computer and use it in GitHub Desktop.
Save jesseloudon/0d3dc1d6034a72cf620e1cc6e3d02d6a to your computer and use it in GitHub Desktop.
ansible on azure part 2
resource "tls_private_key" "vm1key" {
algorithm = "RSA"
rsa_bits = "4096"
}
output "tls_private_key" {
value = tls_private_key.vm1key.private_key_pem
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment