Skip to content
This repository has been archived by the owner on Jul 31, 2024. It is now read-only.

Latest commit

 

History

History
43 lines (32 loc) · 2.02 KB

README.md

File metadata and controls

43 lines (32 loc) · 2.02 KB

terraform-provider-tailscale

Go Reference Go Report Card Github Actions

This repository contains the source code for the Terraform Tailscale Provider a Terraform provider implementation for interacting with the Tailscale API.

See the documentation in the Terraform registry for the most up-to-date information and latest release.

This provider is unofficial and not affiliated in any way with the team at Tailscale. I've been given thanks for creating it, but do not expect anyone who actually works at Tailscale to help you with problems regarding this provider.

Getting Started

To install this provider, copy and paste this code into your Terraform configuration. Then, run terraform init:

terraform {
  required_providers {
    tailscale = {
      source = "davidsbond/tailscale"
      version = "0.2.0"
    }
  }
}

provider "tailscale" {
  api_key = "my_api_key"
  tailnet = "example.com"
}

In the provider block, replace api_key and tailnet with your own tailnet and API key. Alternatively, use the TAILSCALE_API_KEY and TAILSCALE_TAILNET environment variables.

Contributing

Please review the contributing guidelines and code of conduct before contributing to this codebase. Please create a new issue for bugs and feature requests and fill in as much detail as you can.