File tree 7 files changed +1
-17
lines changed
7 files changed +1
-17
lines changed Original file line number Diff line number Diff line change @@ -47,10 +47,6 @@ variable "vpc_enable_dns_hostnames" {
47
47
default = " true"
48
48
}
49
49
50
- variable "vpc_enable_classiclink" {
51
- default = " false"
52
- }
53
-
54
50
# # Tagging Settings
55
51
variable "extra_tags_global" {
56
52
type = map (string )
Original file line number Diff line number Diff line change @@ -4,7 +4,6 @@ resource "aws_vpc" "kube_vpc" {
4
4
instance_tenancy = var. vpc_instance_tenancy
5
5
enable_dns_support = var. vpc_enable_dns_support
6
6
enable_dns_hostnames = var. vpc_enable_dns_hostnames
7
- enable_classiclink = var. vpc_enable_classiclink
8
7
tags = merge (
9
8
local. tags ,
10
9
{
Original file line number Diff line number Diff line change @@ -195,8 +195,6 @@ Terraform will perform the following actions:
195
195
default_route_table_id: <computed>
196
196
default_security_group_id: <computed>
197
197
dhcp_options_id: <computed>
198
- enable_classiclink: "false"
199
- enable_classiclink_dns_support: <computed>
200
198
enable_dns_hostnames: "true"
201
199
enable_dns_support: "true"
202
200
instance_tenancy: "default"
Original file line number Diff line number Diff line change @@ -477,8 +477,6 @@ Terraform will perform the following actions:
477
477
default_route_table_id: <computed>
478
478
default_security_group_id: <computed>
479
479
dhcp_options_id: <computed>
480
- enable_classiclink: "false"
481
- enable_classiclink_dns_support: <computed>
482
480
enable_dns_hostnames: "true"
483
481
enable_dns_support: "true"
484
482
instance_tenancy: "default"
Original file line number Diff line number Diff line change @@ -477,8 +477,6 @@ Terraform will perform the following actions:
477
477
default_route_table_id: <computed>
478
478
default_security_group_id: <computed>
479
479
dhcp_options_id: <computed>
480
- enable_classiclink: "false"
481
- enable_classiclink_dns_support: <computed>
482
480
enable_dns_hostnames: "true"
483
481
enable_dns_support: "true"
484
482
instance_tenancy: "default"
Original file line number Diff line number Diff line change @@ -45,10 +45,6 @@ variable "vpc_enable_dns_hostnames" {
45
45
default = " true"
46
46
}
47
47
48
- variable "vpc_enable_classiclink" {
49
- default = " false"
50
- }
51
-
52
48
variable "admin_subnet_parent_cidr" {
53
49
description = " parent CIDR for the administrative subnets"
54
50
default = " .0.0/19"
@@ -149,7 +145,7 @@ variable "s3_vpc_endpoint_policy" {
149
145
default = << POLICY
150
146
{
151
147
"Statement": [
152
- {
148
+ {
153
149
"Sid": "FullAccess",
154
150
"Action": "*",
155
151
"Effect": "Allow",
Original file line number Diff line number Diff line change @@ -17,7 +17,6 @@ resource "aws_vpc" "default" {
17
17
instance_tenancy = var. vpc_instance_tenancy
18
18
enable_dns_support = var. vpc_enable_dns_support
19
19
enable_dns_hostnames = var. vpc_enable_dns_hostnames
20
- enable_classiclink = var. vpc_enable_classiclink
21
20
tags = merge (
22
21
var. global_tags ,
23
22
{
You can’t perform that action at this time.
0 commit comments