GCE: Ignore Lifecycle in forwarding rule

This commit is contained in:
Justin Santa Barbara 2017-09-25 22:26:50 -04:00
parent 991cd8c66a
commit 7166365006
1 changed files with 3 additions and 0 deletions

View File

@ -73,6 +73,9 @@ func (e *ForwardingRule) Find(c *fi.Context) (*ForwardingRule, error) {
actual.IPAddress = address actual.IPAddress = address
} }
// Ignore "system" fields
actual.Lifecycle = e.Lifecycle
return actual, nil return actual, nil
} }