fix/feature: fix compute & add iam

This commit is contained in:
2025-12-04 11:11:46 +01:00
parent 86b4b09e4d
commit 3f837977bf
4 changed files with 46 additions and 0 deletions

View File

@@ -31,4 +31,9 @@ module "compute" {
frontend_subnet_id = module.network.subnet_ids.frontend
backend_subnet_id = module.network.subnet_ids.backend
database_subnet_id = module.network.subnet_ids.database
}
module "iam" {
source = "../../modules/iam"
project_id = var.project_id
}

View File

@@ -0,0 +1,27 @@
resource "google_service_account" "service_account" {
account_id = "terraform"
display_name = "terraform"
}
resource "google_service_account_key" "mykey" {
service_account_id = google_service_account.service_account.name
public_key_type = "TYPE_X509_PEM_FILE"
}
resource "google_project_iam_binding" "custom_service_account" {
project = var.project_id
role = "roles/viewer"
members = [
"serviceAccount:${google_service_account.service_account.email}",
]
}
data "google_client_openid_userinfo" "me" {
}
resource "google_os_login_ssh_public_key" "cache" {
user = data.google_client_openid_userinfo.me.email
key = file("~/.ssh/id_ed25519.pub")
project = var.project_id
}

View File

@@ -0,0 +1,10 @@
output "email" {
description = "Service account email."
value = google_service_account.service_account.email
}
output "key" {
description = "Service account private key."
sensitive = true
value = google_service_account_key.mykey.private_key
}

View File

@@ -0,0 +1,4 @@
variable "project_id" {
description = "ID du projet"
type = string
}