@@ -6068,3 +6068,130 @@ data "test_data_source" "foo" {
6068
6068
_ , diags := ctx .Plan (m , states .NewState (), SimplePlanOpts (plans .NormalMode , testInputValuesUnset (m .Module .Variables )))
6069
6069
assertNoErrors (t , diags )
6070
6070
}
6071
+
6072
+ func TestContext2Plan_deprecated_variable (t * testing.T ) {
6073
+ m := testModuleInline (t , map [string ]string {
6074
+ "mod/main.tf" : `
6075
+ variable "old-and-used" {
6076
+ type = string
6077
+ deprecated = "module variable deprecation"
6078
+ default = "optional"
6079
+ }
6080
+
6081
+ variable "old-and-unused" {
6082
+ type = string
6083
+ deprecated = "module variable deprecation"
6084
+ default = "optional"
6085
+ }
6086
+
6087
+ variable "new" {
6088
+ type = string
6089
+ default = "optional"
6090
+ }
6091
+
6092
+ output "use-everything" {
6093
+ value = {
6094
+ used = var.old-and-used
6095
+ unused = var.old-and-unused
6096
+ new = var.new
6097
+ }
6098
+ }
6099
+ ` ,
6100
+ "main.tf" : `
6101
+ variable "root-old-and-used" {
6102
+ type = string
6103
+ deprecated = "root variable deprecation"
6104
+ default = "optional"
6105
+ }
6106
+
6107
+ variable "root-old-and-unused" {
6108
+ type = string
6109
+ deprecated = "root variable deprecation"
6110
+ default = "optional"
6111
+ }
6112
+
6113
+ variable "new" {
6114
+ type = string
6115
+ default = "new"
6116
+ }
6117
+
6118
+ module "old-mod" {
6119
+ source = "./mod"
6120
+ old-and-used = "old"
6121
+ }
6122
+
6123
+ module "new-mod" {
6124
+ source = "./mod"
6125
+ new = "new"
6126
+ }
6127
+
6128
+ output "use-everything" {
6129
+ value = {
6130
+ used = var.root-old-and-used
6131
+ unused = var.root-old-and-unused
6132
+ new = var.new
6133
+ }
6134
+ }
6135
+ ` ,
6136
+ })
6137
+
6138
+ p := new (testing_provider.MockProvider )
6139
+ p .GetProviderSchemaResponse = getProviderSchemaResponseFromProviderSchema (& providerSchema {
6140
+ ResourceTypes : map [string ]* configschema.Block {
6141
+ "test_resource" : {
6142
+ Attributes : map [string ]* configschema.Attribute {
6143
+ "attr" : {
6144
+ Type : cty .String ,
6145
+ Computed : true ,
6146
+ },
6147
+ },
6148
+ },
6149
+ },
6150
+ })
6151
+
6152
+ ctx := testContext2 (t , & ContextOpts {
6153
+ Providers : map [addrs.Provider ]providers.Factory {
6154
+ addrs .NewDefaultProvider ("test" ): testProviderFuncFixed (p ),
6155
+ },
6156
+ })
6157
+
6158
+ vars := InputValues {
6159
+ "root-old-and-used" : {
6160
+ Value : cty .StringVal ("root-old-and-used" ),
6161
+ },
6162
+ "root-old-and-unused" : {
6163
+ Value : cty .NullVal (cty .String ),
6164
+ },
6165
+ "new" : {
6166
+ Value : cty .StringVal ("new" ),
6167
+ },
6168
+ }
6169
+
6170
+ _ , diags := ctx .Plan (m , states .NewState (), SimplePlanOpts (plans .NormalMode , vars ))
6171
+
6172
+ var expectedDiags tfdiags.Diagnostics
6173
+ expectedDiags = expectedDiags .Append (
6174
+ & hcl.Diagnostic {
6175
+ Severity : hcl .DiagWarning ,
6176
+ Summary : "Usage of deprecated variable" ,
6177
+ Detail : "root variable deprecation" ,
6178
+ Subject : & hcl.Range {
6179
+ Filename : filepath .Join (m .Module .SourceDir , "main.tf" ),
6180
+ Start : hcl.Pos {Line : 4 , Column : 2 , Byte : 48 },
6181
+ End : hcl.Pos {Line : 4 , Column : 42 , Byte : 88 },
6182
+ },
6183
+ },
6184
+ & hcl.Diagnostic {
6185
+ Severity : hcl .DiagWarning ,
6186
+ Summary : "Usage of deprecated variable" ,
6187
+ Detail : "module variable deprecation" ,
6188
+ Subject : & hcl.Range {
6189
+ Filename : filepath .Join (m .Module .SourceDir , "main.tf" ),
6190
+ Start : hcl.Pos {Line : 21 , Column : 20 , Byte : 346 },
6191
+ End : hcl.Pos {Line : 21 , Column : 25 , Byte : 351 },
6192
+ },
6193
+ },
6194
+ )
6195
+
6196
+ assertDiagnosticsMatch (t , diags , expectedDiags )
6197
+ }
0 commit comments