mirror of
https://github.com/optim-enterprises-bv/terraform-talos.git
synced 2025-11-02 03:08:34 +00:00
14 lines
294 B
HCL
14 lines
294 B
HCL
|
|
resource "azurerm_ssh_public_key" "terraform" {
|
|
name = "Terraform"
|
|
resource_group_name = var.resource_group
|
|
location = var.regions[0]
|
|
public_key = file("~/.ssh/terraform.pub")
|
|
|
|
tags = var.tags
|
|
|
|
lifecycle {
|
|
ignore_changes = [public_key]
|
|
}
|
|
}
|