unused
This commit is contained in:
parent
ddb5b9ee53
commit
d2c2d58f09
|
@ -354,9 +354,3 @@ This means that Terraform did not detect any differences between your
|
||||||
configuration and real physical resources that exist. As a result, no
|
configuration and real physical resources that exist. As a result, no
|
||||||
actions need to be performed.
|
actions need to be performed.
|
||||||
`
|
`
|
||||||
|
|
||||||
const planRefreshing = `
|
|
||||||
[reset][bold]Refreshing Terraform state in-memory prior to plan...[reset]
|
|
||||||
The refreshed state will be used to calculate this plan, but will not be
|
|
||||||
persisted to local or remote state storage.
|
|
||||||
`
|
|
||||||
|
|
|
@ -690,7 +690,7 @@ Plan: 0 to add, 0 to change, 1 to destroy.`
|
||||||
}
|
}
|
||||||
|
|
||||||
func getAddrs(resources []*plans.ResourceInstanceChangeSrc) []string {
|
func getAddrs(resources []*plans.ResourceInstanceChangeSrc) []string {
|
||||||
addrs := make([]string, len(resources), len(resources))
|
addrs := make([]string, len(resources))
|
||||||
for i, r := range resources {
|
for i, r := range resources {
|
||||||
addrs[i] = r.Addr.String()
|
addrs[i] = r.Addr.String()
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue