Skip to content

Latest commit

 

History

History
 
 

terraform

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 

English version below

Conditions préalables

Configuration AWS

Vous devrez configurer l'AWS CLI.

OU si vous utilisez AWS SSO

Configurez ensuite Terraform.

OU Configuration Azure

Vous devrez configurer Azure CLI.

Configurez ensuite Terraform.

Rendre le fichier terraform générique pour chaque juridiction. Lorsque vous configurez aws ou Azure CLI, utilisez :

  • Nom du profil CLI : CandyDevNetwork.
  • Et utilisez les variables pour votre installation spécifique.

Aide-mémoire

Pour le premier démarrage de votre configuration terraform, vous devez au moins "init" et "plan":

terraform init --upgrade
plan terraform -var-file="environments/dev1/terraform.tfvars"

Pour effectuer le provisionnement :

terraform applique -var-file="environments/dev1/terraform.tfvars"

En fin de compte, si vous devez détruire ce qui était prévu :

terraform destroy -var-file="environments/dev1/terraform.tfvars"

Prerequisites

AWS Setup

You will need to configure AWS CLI.

OR if you use AWS SSO

Then setup Terraform.

OR Azure Setup

You will need to configure Azure CLI.

Then setup Terraform.

To make the terraform file generic for every juridiction. When you configure you aws or azure CLI use the :

  • CLI profile name: CandyDevNetwork.
  • And use the variables for your specific installation.

Cheat Sheet

For the first boot of your terraform provisiong you need to at least "init" and "plan":

terraform init --upgrade
terraform plan -var-file="environments/dev1/terraform.tfvars"

To perform the provisiong:

terraform apply -var-file="environments/dev1/terraform.tfvars"

Ultimately if you need to destroy what was provision:

terraform destroy -var-file="environments/dev1/terraform.tfvars"

Recommendations:

It is highly recommended to manage your environments using workspaces and to manage you workspaces and their credentials and variables using a Terraform Cloud account. This eliminates the use of having to manage *.tfvars files locally and allows teams to share and utilize the same workspaces and therefore the same variables for each managed environment.