From 995360be91fbdd9ca318b96e128fe5fe4fc5a641 Mon Sep 17 00:00:00 2001 From: Anton Babenko Date: Fri, 22 Jun 2018 13:15:37 +0200 Subject: [PATCH] Removed obsolete default_route_table_tags (fixed #146) --- README.md | 1 - variables.tf | 5 ----- 2 files changed, 6 deletions(-) diff --git a/README.md b/README.md index 41627717a..3e10b164e 100644 --- a/README.md +++ b/README.md @@ -170,7 +170,6 @@ Terraform version 0.10.3 or newer is required for this module to work. | database_subnet_group_tags | Additional tags for the database subnet group | string | `` | no | | database_subnet_tags | Additional tags for the database subnets | string | `` | no | | database_subnets | A list of database subnets | list | `` | no | -| default_route_table_tags | Additional tags for the default route table | string | `` | no | | default_vpc_enable_classiclink | Should be true to enable ClassicLink in the Default VPC | string | `false` | no | | default_vpc_enable_dns_hostnames | Should be true to enable DNS hostnames in the Default VPC | string | `false` | no | | default_vpc_enable_dns_support | Should be true to enable DNS support in the Default VPC | string | `true` | no | diff --git a/variables.tf b/variables.tf index 398ed1300..8dff348b7 100644 --- a/variables.tf +++ b/variables.tf @@ -158,11 +158,6 @@ variable "private_subnet_tags" { default = {} } -variable "default_route_table_tags" { - description = "Additional tags for the default route table" - default = {} -} - variable "public_route_table_tags" { description = "Additional tags for the public route tables" default = {}