-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
{docs,examples,tailscale}: fix minor documentation mistakes (#432)
Fix minor documentation mistakes that made their way into v0.17.0. Namely: - Clarify that advertised routes cannot be managed through terraform and not "routes" in general. - Add missing example for posture_integration resource. - Add missing example and import for tailnet_settings resource. Updates #cleanup Signed-off-by: Mario Minardi <mario@tailscale.com>
- Loading branch information
Showing
7 changed files
with
53 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
resource "tailscale_posture_integration" "sample_posture_integration" { | ||
posture_provider = "falcon" | ||
cloud_id = "us-1" | ||
client_id = "clientid1" | ||
client_secret = "test-secret1" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
# ID doesn't matter. | ||
terraform import tailscale_tailnet_settings.sample_preferences tailnet_settings |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
resource "tailscale_tailnet_settings" "sample_tailnet_settings" { | ||
devices_approval_on = true | ||
devices_auto_updates_on = true | ||
devices_key_duration_days = 5 | ||
users_approval_on = true | ||
users_role_allowed_to_join_external_tailnet = "member" | ||
posture_identity_collection_on = true | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters