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
### Automatically Configure DNS Settings for Your Domain
62
+
63
+
```terraform
64
+
variable "domain_name" {
65
+
type = string
66
+
}
67
+
68
+
resource "scaleway_tem_domain" "main" {
69
+
name = var.domain_name
70
+
accept_tos = true
71
+
autoconfig = true
72
+
}
73
+
74
+
```
75
+
61
76
### Configuring GitLab Project Variables
62
77
63
78
```terraform
@@ -101,6 +116,8 @@ The following arguments are supported:
101
116
102
117
-`project_id` - (Defaults to [provider](../index.md#project_id)`project_id`) The ID of the project the domain is associated with.
103
118
119
+
-`autoconfig` - (Defaults to `false`) Automatically configures DNS settings for the domain, simplifying the setup process by applying predefined configurations.
120
+
104
121
## Attributes Reference
105
122
106
123
In addition to all arguments above, the following attributes are exported:
0 commit comments