From e7533382dcc02853c74dd2b2093048c18fdc4861 Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Sun, 18 Nov 2018 07:34:39 -0800 Subject: [PATCH] data/aws/vpc: Drop unused depends_on variable This variable was added in a2232f30 (platform/aws: create bootstrap step, 2018-02-14, coreos/tectonic-installer#2946), to force VPC creation after the S3 bucket. But that dependency was removed in b2e0bcf2 (Don't upload /generated to S3 - only use Ignition, 2018-04-13, coreos/tectonic-installer#3183), so we no longer need the variable. --- data/data/aws/vpc/variables.tf | 5 ----- 1 file changed, 5 deletions(-) diff --git a/data/data/aws/vpc/variables.tf b/data/data/aws/vpc/variables.tf index 4b3aa66e534..73b39e627ad 100644 --- a/data/data/aws/vpc/variables.tf +++ b/data/data/aws/vpc/variables.tf @@ -51,8 +51,3 @@ variable "public_master_endpoints" { description = "If set to true, public-facing ingress resources are created." default = true } - -variable "depends_on" { - default = [] - type = "list" -}