Skip to content
This repository has been archived by the owner on Nov 22, 2023. It is now read-only.

Commit

Permalink
Remove provider variable and update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
bluk committed Dec 7, 2018
1 parent 197c77d commit 4492adf
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 6 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# CHANGELOG

## v0.2.2

* Update documentation and remove unused `provider` variable.

## v0.2.1

* Fix using a non-default provider.
Expand Down
10 changes: 9 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,17 @@ In your Terraform file:
```
module "example_fastmail-dns" {
source = "bluk/fastmail-dns/cloudflare"
version = "0.2.1"
version = "0.2.2"
domain_name = "example.com"
create_root_domain_txt = false
ttl = "3600"
providers = {
cloudflare = "cloudflare"
}
}
```

Expand Down
5 changes: 0 additions & 5 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,3 @@ variable "ttl" {
description = "The TTL to use for the DNS records."
default = 3600
}

variable "provider" {
description = "The resource provider to use. Defaults to `cloudflare`."
default = "cloudflare"
}

0 comments on commit 4492adf

Please sign in to comment.