TP7virtu/tp-cloud/terraform/environments/dev/main.tf

60 lines
1.4 KiB
Terraform
Raw Normal View History

2024-12-04 16:11:44 +01:00
terraform {
required_providers {
google = {
source = "hashicorp/google"
version = "~> 6.0"
}
}
}
provider "google" {
2024-12-04 16:23:57 +01:00
project = var.project_id
2024-12-04 16:11:44 +01:00
region = var.region
}
module "network" {
source = "../../modules/network"
# Variables d'entrée
project_name = var.project_name
region = var.region
# Autres variables spécifiques au module
cidr_range = var.cidr_range
frontend_cidr = var.frontend_cidr
backend_cidr = var.backend_cidr
2024-12-04 16:23:06 +01:00
database_cidr = var.database_cidr
2024-12-04 16:11:44 +01:00
ssh_source_ranges = var.ssh_source_ranges
2024-12-06 14:42:39 +01:00
}
module "compute" {
source = "../../modules/compute"
instance_type = "e2-micro"
2024-12-06 14:56:15 +01:00
zone ="europe-west4-a"
2024-12-06 14:42:39 +01:00
frontend_subnet_id = module.network.id_subnetwork["frontend"]
backend_subnet_id = module.network.id_subnetwork["backend"]
database_subnet_id = module.network.id_subnetwork["database"]
2024-12-06 15:37:23 +01:00
}
module "iam" {
2024-12-06 16:05:37 +01:00
source = "../../modules/iam"
2024-12-06 15:37:23 +01:00
project_id = var.project_id
2024-12-06 16:05:37 +01:00
}
data "google_client_openid_userinfo" "me" {
}
resource "local_file" "ansible_config" {
content = templatefile("${path.module}/../../templates/ansible.cfg.tpl",
{
remote_user = data.google_client_openid_userinfo.me.email
}
)
filename = "../../ansible/ansible.cfg"
}
resource "local_file" "service_account" {
content = base64decode(module.iam.service_account_key)
filename = "../../ansible/service_account.json"
2024-12-04 16:11:44 +01:00
}