aboutsummaryrefslogtreecommitdiffhomepage
path: root/vendor/github.com/hashicorp/terraform/helper/schema/shims.go
diff options
context:
space:
mode:
authorAlexandre Garand <alexandre.garand@fretlink.com>2019-08-09 15:59:15 +0200
committerAlexandre Garand <alexandre.garand@fretlink.com>2019-08-09 16:39:21 +0200
commit863486a6b71ed0e562a3965bed56465d007b1418 (patch)
treee93f6a687695af86d54237ec9f575d4ef104222d /vendor/github.com/hashicorp/terraform/helper/schema/shims.go
parent49c1c7b4dc69ffb9ab52330e6dc52ccdd6351087 (diff)
downloadterraform-provider-statuscake-add_contact_groups.tar.gz
terraform-provider-statuscake-add_contact_groups.tar.zst
terraform-provider-statuscake-add_contact_groups.zip
update vendor and go.modadd_contact_groups
Diffstat (limited to 'vendor/github.com/hashicorp/terraform/helper/schema/shims.go')
-rw-r--r--vendor/github.com/hashicorp/terraform/helper/schema/shims.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/vendor/github.com/hashicorp/terraform/helper/schema/shims.go b/vendor/github.com/hashicorp/terraform/helper/schema/shims.go
index 203d017..988573e 100644
--- a/vendor/github.com/hashicorp/terraform/helper/schema/shims.go
+++ b/vendor/github.com/hashicorp/terraform/helper/schema/shims.go
@@ -6,7 +6,7 @@ import (
6 "github.com/zclconf/go-cty/cty" 6 "github.com/zclconf/go-cty/cty"
7 ctyjson "github.com/zclconf/go-cty/cty/json" 7 ctyjson "github.com/zclconf/go-cty/cty/json"
8 8
9 "github.com/hashicorp/terraform/config" 9 "github.com/hashicorp/terraform/config/hcl2shim"
10 "github.com/hashicorp/terraform/configs/configschema" 10 "github.com/hashicorp/terraform/configs/configschema"
11 "github.com/hashicorp/terraform/terraform" 11 "github.com/hashicorp/terraform/terraform"
12) 12)
@@ -50,7 +50,7 @@ func removeConfigUnknowns(cfg map[string]interface{}) {
50 for k, v := range cfg { 50 for k, v := range cfg {
51 switch v := v.(type) { 51 switch v := v.(type) {
52 case string: 52 case string:
53 if v == config.UnknownVariableValue { 53 if v == hcl2shim.UnknownVariableValue {
54 delete(cfg, k) 54 delete(cfg, k)
55 } 55 }
56 case []interface{}: 56 case []interface{}: