deploy done

This commit is contained in:
Johan LEROY
2026-03-30 14:18:20 +02:00
parent 2a0b8641c5
commit 9c848044d9
3 changed files with 8 additions and 1 deletions

View File

@@ -10,7 +10,8 @@ terraform {
}
provider "aws" {
region = var.aws_region
region = var.aws_region
profile = var.aws_profile
default_tags {
tags = {

BIN
plan.tfplan Normal file

Binary file not shown.

View File

@@ -1,3 +1,9 @@
variable "aws_profile" {
description = "Profil AWS a utiliser"
type = string
default = "ecole"
}
variable "aws_region" {
description = "Region AWS de deploiement"
type = string