This repository has been archived by the owner on Mar 1, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 37
.services: was null, but now ... #151
Comments
Yeah,
seems to have fixed it. |
This prevents updating machines with no services defined (eg: databases). |
I ran into a similar issue. As a temporary fix, I initially defined the service on my database machine to be an empty array, that way I am able to update the configuration on subsequent deployments: resource "fly_machine" "database" {
...
services = []
...
} |
Same on my end. If you omit services completely, tfstate still sets |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
I encountered this error after updating a machine image:
I guess
Read
andCreate
setservices = nil
but this is missing fromUpdate
? AtThe text was updated successfully, but these errors were encountered: