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
Allow importing members (#32)
re #17 and #29
I'm not sure how to add a test for `import`ing yet.
The cool tf harness doesn't support `import`.
The terraform file I used for testing.
```
terraform {
required_providers {
zerotier = {
source = "zerotier/zerotier"
}
}
}
resource "zerotier_member" "bob" {}
```
`terraform import zerotier_member.bob 8286ac0e4786b2aa-1122334455` The member needs to already exist
`terraform state show zerotier_member.bob`
implementation borrowed from bltavares branch