You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Creating an IP range in the resource subnet will create IPRange resources that aren't read into state when terraform refreshes. For example, running terraform apply on the following configuration:
will create 2 IP ranges. If any of the fields comment, start_ip, or end_ip are edited in MAAS, and terraform plan is then run, terraform will not detect a change in state and the plan will be empty.
This is likely because the read function only looks at gateway_ip and dns_servers at the time of writing
The text was updated successfully, but these errors were encountered:
Creating an IP range in the resource
subnet
will create IPRange resources that aren't read into state when terraform refreshes. For example, runningterraform apply
on the following configuration:will create 2 IP ranges. If any of the fields
comment
,start_ip
, orend_ip
are edited in MAAS, andterraform plan
is then run, terraform will not detect a change in state and the plan will be empty.This is likely because the read function only looks at
gateway_ip
anddns_servers
at the time of writingThe text was updated successfully, but these errors were encountered: