Pour tout problème contactez-nous par mail : support@froggit.fr | La FAQ :grey_question: | Rejoignez-nous sur le Chat :speech_balloon:

Skip to content
Snippets Groups Projects
Commit c7546217 authored by spasmojo_protonmail.com's avatar spasmojo_protonmail.com
Browse files

Create ec2.tf

parents
No related branches found
No related tags found
No related merge requests found
ec2.tf 0 → 100644
terraform {
required_providers {
aws = {
source = "hashicorp/aws"
version = "~> 3.0"
}
}
}
provider "aws" {
region = "eu-west-3"
}
resource "aws_instance" "myec2" {
ami = "ami-0d3f551818b21ed81"
instance_type = "t2.micro"
key_name = "devops-spasmojo"
tags = {
Name = "ec2-spasmojo"
}
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment