Skip to content

terraform-community-modules/tf_aws_igw

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 

Repository files navigation

Internet Gateway Terraform module

A Terraform module to provide an Internet Gateway in AWS.

Module Input Variables

  • vpc_id - vpc id
  • name - name (optional)
  • tags - dictionary of tags that will be added to resources created by the module

Usage

module "igw" {
  source = "github.com/terraform-community-modules/tf_aws_igw"

  name   = "default"
  vpc_id = "vpc-12345678"

  tags {
    "Terraform" = "true"
    "Environment" = "${var.environment}"
  }
}

Outputs

  • igw_id - igw id

Authors

Originally created and maintained by Anton Babenko

License

Apache 2 Licensed. See LICENSE for full details.

About

A Terraform module to provide an Internet Gateway in AWS.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages