Skip to content

Commit

Permalink
Merge pull request #50 from clouddrove/issue-441
Browse files Browse the repository at this point in the history
removed deprecated arguments
  • Loading branch information
yadavprakash authored May 31, 2023
2 parents 70a6f2c + b53f629 commit f49b818
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 18 deletions.
2 changes: 0 additions & 2 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,6 @@ resource "aws_vpc" "default" {
instance_tenancy = var.instance_tenancy
enable_dns_hostnames = var.enable_dns_hostnames
enable_dns_support = var.enable_dns_support
enable_classiclink = var.enable_classiclink
enable_classiclink_dns_support = var.enable_classiclink_dns_support
ipv4_ipam_pool_id = var.ipv4_ipam_pool_id
ipv4_netmask_length = var.ipv4_ipam_pool_id != "" ? var.ipv4_netmask_length : null
assign_generated_ipv6_cidr_block = true
Expand Down
4 changes: 0 additions & 4 deletions outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -52,10 +52,6 @@ output "igw_id" {
description = "The ID of the Internet Gateway."
}

output "enable_classiclink" {
value = join("", aws_vpc.default.*.enable_classiclink)
description = "Whether or not the VPC has Classiclink enabled"
}

output "arn" {
value = join("", aws_flow_log.vpc_flow_log.*.arn)
Expand Down
12 changes: 0 additions & 12 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -86,18 +86,6 @@ variable "enable_dns_support" {
description = "A boolean flag to enable/disable DNS support in the VPC."
}

variable "enable_classiclink" {
type = bool
default = false
description = "A boolean flag to enable/disable ClassicLink for the VPC."
}

variable "enable_classiclink_dns_support" {
type = bool
default = false
description = "A boolean flag to enable/disable ClassicLink DNS Support for the VPC."
}

#Module : FLOW LOG
#Description : Terraform flow log module variables.
variable "enable_flow_log" {
Expand Down

0 comments on commit f49b818

Please sign in to comment.