ajout iam

This commit is contained in:
2025-12-04 11:05:05 +01:00
parent fec56a2ffc
commit dae3e1dffd
5 changed files with 28 additions and 15 deletions

View File

@@ -39,4 +39,5 @@ module "compute" {
module "iam" {
source ="../../modules/iam"
project_id = var.project_id
ssh_public_key_path = var.ssh_public_key_path
}

View File

@@ -53,3 +53,9 @@ variable "zone" {
type = string
default = "europe-west9-b"
}
variable "ssh_public_key_path" {
type = string
description = "Chemin vers la clé publique SSH"
default = "~/.ssh/id_ed25519.pub"
}

View File

@@ -3,12 +3,12 @@ resource "google_service_account" "service_account" {
display_name = "terraform"
}
resource "google_service_account_key" "mykey" {
resource "google_service_account_key" "key" {
service_account_id = google_service_account.service_account.name
public_key_type = "TYPE_X509_PEM_FILE"
}
resource "google_project_iam_binding" "custom_service_account" {
resource "google_project_iam_binding" "sa_viewer" {
project = var.project_id
role = "roles/viewer"
@@ -17,11 +17,11 @@ resource "google_project_iam_binding" "custom_service_account" {
]
}
data "google_client_openid_userinfo" "me" {
}
# Ajout sécurité : OS Login
data "google_client_openid_userinfo" "me" {}
resource "google_os_login_ssh_public_key" "cache" {
user = data.google_client_openid_userinfo.me.email
resource "google_os_login_ssh_public_key" "ssh_key" {
user = data.google_client_openid_userinfo.me.email
project = var.project_id
key = file("~/.ssh/id_ed25519.pub")
key = file(var.ssh_public_key_path)
}

View File

@@ -1,9 +1,10 @@
output "service_account_email" {
value = google_service_account.service_account.email
description = "Email du service account créé"
value = google_service_account.sa.email
}
output "custom_role_name" {
description = "Nom du rôle IAM personnalisé"
value = google_project_iam_custom_role.custom_role.name
output "service_account_key" {
value = google_service_account_key.key.private_key
sensitive = true
description = "Clé privée du service account"
}

View File

@@ -1,4 +1,9 @@
variable "project_id" {
description = "ID du projet GCP"
type = string
description = "ID du projet GCP"
}
variable "ssh_public_key_path" {
type = string
description = "Chemin vers la clé publique SSH"
}