@@ -202,18 +202,10 @@ var MessageRegistry map[InitMessageCode]InitMessage = map[InitMessageCode]InitMe
202
202
HumanValue : dependenciesLockChangesInfo ,
203
203
JSONValue : dependenciesLockChangesInfo ,
204
204
},
205
- "dependencies_lock_pending_changes_info" : {
206
- HumanValue : dependenciesLockPendingChangesInfo ,
207
- JSONValue : dependenciesLockPendingChangesInfo ,
208
- },
209
205
"lock_info" : {
210
206
HumanValue : previousLockInfoHuman ,
211
207
JSONValue : previousLockInfoJSON ,
212
208
},
213
- "pending_lock_info" : {
214
- HumanValue : pendingLockInfoHuman ,
215
- JSONValue : pendingLockInfoJSON ,
216
- },
217
209
"provider_already_installed_message" : {
218
210
HumanValue : "- Using previously-installed %s v%s" ,
219
211
JSONValue : "%s v%s: Using previously-installed provider version" ,
@@ -294,8 +286,6 @@ const (
294
286
295
287
InitializingProviderPluginFromConfigMessage InitMessageCode = "initializing_provider_plugin_from_config_message"
296
288
InitializingProviderPluginFromStateMessage InitMessageCode = "initializing_provider_plugin_from_state_message"
297
- PendingLockInfo InitMessageCode = "pending_lock_info"
298
- DependenciesLockPendingChangesInfo InitMessageCode = "dependencies_lock_pending_changes_info"
299
289
ReusingVersionIdentifiedFromConfig InitMessageCode = "reusing_version_during_state_provider_init"
300
290
301
291
// InitConfigError indicates problems encountered during initialisation
@@ -394,34 +384,17 @@ selections it made above. Include this file in your version control repository
394
384
so that Terraform can guarantee to make the same selections by default when
395
385
you run "terraform init" in the future.`
396
386
397
- const pendingLockInfoHuman = `
398
- Terraform will create a lock file [bold].terraform.lock.hcl[reset] to record the provider
399
- selections it made above. Include this file in your version control repository
400
- so that Terraform can guarantee to make the same selections by default when
401
- you run "terraform init" in the future.`
402
-
403
387
const previousLockInfoJSON = `
404
388
Terraform has created a lock file .terraform.lock.hcl to record the provider
405
389
selections it made above. Include this file in your version control repository
406
390
so that Terraform can guarantee to make the same selections by default when
407
391
you run "terraform init" in the future.`
408
392
409
- const pendingLockInfoJSON = `
410
- Terraform will create a lock file .terraform.lock.hcl to record the provider
411
- selections it made above. Include this file in your version control repository
412
- so that Terraform can guarantee to make the same selections by default when
413
- you run "terraform init" in the future.`
414
-
415
393
const dependenciesLockChangesInfo = `
416
394
Terraform has made some changes to the provider dependency selections recorded
417
395
in the .terraform.lock.hcl file. Review those changes and commit them to your
418
396
version control system if they represent changes you intended to make.`
419
397
420
- const dependenciesLockPendingChangesInfo = `
421
- Terraform has pending changes to make to the provider dependency selections recorded
422
- in the .terraform.lock.hcl file. These will be persisted once the final set of dependencies
423
- are determined.`
424
-
425
398
const partnerAndCommunityProvidersInfo = "\n Partner and community providers are signed by their developers.\n " +
426
399
"If you'd like to know more about provider signing, you can read about it here:\n " +
427
400
"https://developer.hashicorp.com/terraform/cli/plugins/signing"
0 commit comments