Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support importing tailscale_dns_preferences resources. #296

Merged
merged 1 commit into from
Nov 13, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions docs/resources/acl.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,3 +36,12 @@ resource "tailscale_acl" "sample_acl" {
### Read-Only

- `id` (String) The ID of this resource.

## Import

Import is supported using the following syntax:

```shell
# ID doesn't matter.
terraform import tailscale_acl.sample_acl acl
```
9 changes: 9 additions & 0 deletions docs/resources/dns_preferences.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,12 @@ resource "tailscale_dns_preferences" "sample_preferences" {
### Read-Only

- `id` (String) The ID of this resource.

## Import

Import is supported using the following syntax:

```shell
# ID doesn't matter.
terraform import tailscale_dns_preferences.sample_preferences dns_preferences
```
2 changes: 2 additions & 0 deletions examples/resources/tailscale_acl/import.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# ID doesn't matter.
terraform import tailscale_acl.sample_acl acl
dsymonds marked this conversation as resolved.
Show resolved Hide resolved
2 changes: 2 additions & 0 deletions examples/resources/tailscale_dns_preferences/import.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# ID doesn't matter.
terraform import tailscale_dns_preferences.sample_preferences dns_preferences
dsymonds marked this conversation as resolved.
Show resolved Hide resolved
3 changes: 3 additions & 0 deletions tailscale/resource_dns_preferences.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@ func resourceDNSPreferences() *schema.Resource {
CreateContext: resourceDNSPreferencesCreate,
UpdateContext: resourceDNSPreferencesUpdate,
DeleteContext: resourceDNSPreferencesDelete,
Importer: &schema.ResourceImporter{
StateContext: schema.ImportStatePassthroughContext,
},
Schema: map[string]*schema.Schema{
"magic_dns": {
Type: schema.TypeBool,
Expand Down
Loading