Skip to content

Instantly share code, notes, and snippets.

View monostere0's full-sized avatar

Daniel monostere0

  • Amsterdam, Netherlands
View GitHub Profile
@monostere0
monostere0 / main.tf
Last active August 10, 2021 06:53
Terraform VPC
provider "aws" {
version = "~> 2.0"
region = "eu-central-1"
}
# VPC
resource "aws_vpc" "tf_vpc" {
cidr_block = "10.0.0.0/16"
tags = {
An execution plan has been generated and is shown below.
Resource actions are indicated with the following symbols:
+ create
Terraform will perform the following actions:
<lots of information about the resources that Terraform is about to create>
Plan: 15 to add, 0 to change, 0 to destroy.