Giter Site home page Giter Site logo

andynze1 / lauromuller-terraform-aws-networking-tf-course Goto Github PK

View Code? Open in Web Editor NEW

This project forked from lm-academy/terraform-aws-networking-tf-course

0.0 0.0 0.0 8 KB

Networking module created during Lauro Müller's Terraform course.

License: MIT License

HCL 100.00%

lauromuller-terraform-aws-networking-tf-course's Introduction

terraform-aws-networking-tf-course

Networking module created during Lauro Müller's Terraform course: https://www.lauromueller.com/courses/mastering-terraform

This module manages the creation of VPCs and Subnets, allowing for the creation of both private and public subnets.

Example usage:

module "vpc" {
  source = "./modules/networking"

  vpc_config = {
    cidr_block = "10.0.0.0/16"
    name       = "your_vpc"
  }

  subnet_config = {
    subnet_1 = {
      cidr_block = "10.0.0.0/24"
      az         = "eu-west-1a"
    }
    subnet_2 = {
      cidr_block = "10.0.1.0/24"
      public     = true
      az         = "eu-west-1b"
    }
  }
}

Check my other courses:

lauromuller-terraform-aws-networking-tf-course's People

Contributors

lauromueller avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.