This commit is contained in:
2025-12-03 16:47:52 +01:00
parent 93f91bbdf5
commit 80d0b6148e
2 changed files with 2 additions and 2 deletions

View File

@@ -52,7 +52,7 @@ module "iam" {
# Fichier template Ansible
# ------------------------
data "template" "ansible_cfg" {
data "templatefile" "ansible_cfg" {
template = file("${path.module}/../../template/ansible.cfg.tpl")
vars = {

View File

@@ -19,6 +19,6 @@ resource "google_project_iam_member" "terraform_roles" {
# Activation OS Login pour SSH
resource "google_os_login_ssh_public_key" "ssh_key" {
user = "raphael.hochlaf@gmail.com"
key = file("~/.ssh/id_rsa.pub")
key = file("~/.ssh/id_ed25519.pub")
project = var.project_id
}