terraform-provider-netlify
terraform-provider-netlify copied to clipboard
Terraform Netlify provider. Please note: This Terraform provider is archived per our provider archiving process: https://terraform.io/docs/internals/archiving.html
Hey, WIll flesh this out when I get a bit more time but wanted to call out that there appears to be a change required in the provider as a...
Can now support a list of domain aliases: ``` resource "netlify_site" "site" { [...] domain_aliases = [ "www1.example.com", "www2.example.com", ] } ``` Fixes #29
### Description Having a DNS record resource would be nice. ### New or Affected Resource(s) * netlify_dns_record ### Potential Terraform Configuration ```terraform resource "netlify_dns_record" "mysite" { hostname = "mysite.com" priority...
```hcl # Configure the Netlify Provider provider "netlify" { token = "NETLIFY_TOKEN" } terraform { required_version = ">= 0.12.20" } // How do I know about events and Event Types?...
From what I can see, the docs don't make it clear how to set up a site for manual deploys (ie. no git repo). The `repo` block seems to be...
### Importing of sites I'm currently in the process of consolidating all of my online infrastructure into Terraform and would thus need to import my existing site into state. Would...
Migrated the provider to the plugin SDK using the automated migration tool. Build runs, no issues.
This feature allow to deploy sites in specific netlify's team Fixes #33
In the documentation doesn't provide a way to deploy a site in specific team. How can I do that with terraform?