mirror of
https://github.com/opentofu/opentofu.git
synced 2025-02-25 18:45:20 -06:00
terraform: fix missing arg to Printf
This commit is contained in:
parent
7a97396583
commit
ca875f5457
@ -596,7 +596,11 @@ func upgradeV1State(old *StateV1) (*State, error) {
|
||||
// Warn if the resource uses Extra, as there is
|
||||
// no upgrade path for this! Now totally deprecated.
|
||||
if len(rs.Extra) > 0 {
|
||||
log.Printf("[WARN] Resource %s uses deprecated attribute storage, state file upgrade may be incomplete.")
|
||||
log.Printf(
|
||||
"[WARN] Resource %s uses deprecated attribute "+
|
||||
"storage, state file upgrade may be incomplete.",
|
||||
rs.ID,
|
||||
)
|
||||
}
|
||||
}
|
||||
return s, nil
|
||||
|
Loading…
Reference in New Issue
Block a user