You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Dyn provider is used to interact with the resources supported by Dyn. The provider needs to be configured with the proper credentials before it can be used.
7
+
---
8
+
9
+
# Dyn Provider
10
+
11
+
The Dyn provider is used to interact with the
12
+
resources supported by Dyn. The provider needs to be configured
13
+
with the proper credentials before it can be used.
14
+
15
+
Use the navigation to the left to read about the available resources.
16
+
17
+
## Example Usage
18
+
19
+
```
20
+
# Configure the Dyn provider
21
+
provider "dyn" {
22
+
customer_name = "${var.dyn_customer_name}"
23
+
username = "${var.dyn_username}"
24
+
password = "${var.dyn_password}"
25
+
}
26
+
27
+
# Create a record
28
+
resource "dyn_record" "www" {
29
+
...
30
+
}
31
+
```
32
+
33
+
## Argument Reference
34
+
35
+
The following arguments are supported:
36
+
37
+
*`customer_name` - (Required) The Dyn customer name. It must be provided, but it can also be sourced from the `DYN_CUSTOMER_NAME` environment variable.
38
+
*`username` - (Required) The Dyn username. It must be provided, but it can also be sourced from the `DYN_USERNAME` environment variable.
39
+
*`password` - (Required) The Dyn password. It must be provided, but it can also be sourced from the `DYN_PASSWORD` environment variable.
0 commit comments