digitalocean: update index docs for do_token var
Updates the docs and clarifies the usage of `do_token` variable. I was experiencing an issue mentioned here https://github.com/hashicorp/terraform/issues/124 and so adding more docs should be helpful.
This commit is contained in:
parent
1373a6086b
commit
65cd53f70a
|
@ -17,6 +17,9 @@ Use the navigation to the left to read about the available resources.
|
||||||
## Example Usage
|
## Example Usage
|
||||||
|
|
||||||
```
|
```
|
||||||
|
# Set the variable value in *.tfvars file or using -var="do_token=..." CLI option
|
||||||
|
variable "do_token" {}
|
||||||
|
|
||||||
# Configure the DigitalOcean Provider
|
# Configure the DigitalOcean Provider
|
||||||
provider "digitalocean" {
|
provider "digitalocean" {
|
||||||
token = "${var.do_token}"
|
token = "${var.do_token}"
|
||||||
|
|
Loading…
Reference in New Issue