1
0
Fork 0

tfstate in s3

This commit is contained in:
Cedric Girard 2020-05-12 14:20:14 +02:00
parent ef982d0ed1
commit e666b64c97
Signed by: X-dark
GPG Key ID: E7D0E125DB9519E4
2 changed files with 31 additions and 2 deletions

4
.gitignore vendored
View File

@ -3,8 +3,8 @@
**/.terraform/*
# .tfstate files
#*.tfstate
#*.tfstate.*
*.tfstate
*.tfstate.*
# Crash log files
crash.log

29
project3/base.tf Normal file
View File

@ -0,0 +1,29 @@
terraform {
backend "s3"{
bucket = "terraformsanofieu"
region = "eu-west-2"
key = "cedric/project3.tfstate"
}
}
provider "aws" {
region = "eu-west-2"
}
resource "aws_instance" "cedric-instance3" {
ami = "ami-01a6e31ac994bbc09"
instance_type = "t2.micro"
key_name = "cedric"
tags = {
Name = "cedric-instance3"
}
}
resource "aws_instance" "cedric-instance4" {
ami = "ami-01a6e31ac994bbc09"
instance_type = "t2.micro"
key_name = "cedric"
tags = {
Name = "cedric-instance4"
}
}