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
Copy file name to clipboardExpand all lines: README.md
+6Lines changed: 6 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -119,6 +119,7 @@ Available targets:
119
119
| Name | Description | Type | Default | Required |
120
120
|------|-------------|:----:|:-----:|:-----:|
121
121
| aliases | List of aliases | list(string) | - | yes |
122
+
| allow_overwrite | Allow creation of this record in Terraform to overwrite an existing record, if any. This does not affect the ability to update the record in Terraform and does not prevent other resources within Terraform or manual Route 53 changes outside Terraform from overwriting this record. false by default. This configuration is not recommended for most environments | bool |`false`| no |
122
123
| enabled | Set to false to prevent the module from creating any resources | bool |`true`| no |
123
124
| evaluate_target_health | Set to true if you want Route 53 to determine whether to respond to DNS queries | bool |`false`| no |
124
125
| ipv6_enabled | Set to true to enable an AAAA DNS record to be set as well as the A record | bool |`false`| no |
@@ -190,6 +191,10 @@ We deliver 10x the value for a fraction of the cost of a full-time engineer. Our
190
191
191
192
Join our [Open Source Community][slack] on Slack. It's **FREE** for everyone! Our "SweetOps" community is where you get to talk with others who share a similar vision for how to rollout and manage infrastructure. This is the best place to talk shop, ask questions, solicit feedback, and work together as a community to build totally *sweet* infrastructure.
192
193
194
+
## Discourse Forums
195
+
196
+
Participate in our [Discourse Forums][discourse]. Here you'll find answers to commonly asked questions. Most questions will be related to the enormous number of projects we support on our GitHub. Come here to collaborate on answers, find solutions, and get ideas about the products and services we value. It only takes a minute to get started! Just sign in with SSO using your GitHub account.
197
+
193
198
## Newsletter
194
199
195
200
Sign up for [our newsletter][newsletter] that covers everything on our technology radar. Receive updates on what we're up to on GitHub as well as awesome new projects we discover.
@@ -305,6 +310,7 @@ Check out [our other projects][github], [follow us on twitter][twitter], [apply
Copy file name to clipboardExpand all lines: docs/terraform.md
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -3,6 +3,7 @@
3
3
| Name | Description | Type | Default | Required |
4
4
|------|-------------|:----:|:-----:|:-----:|
5
5
| aliases | List of aliases | list(string) | - | yes |
6
+
| allow_overwrite | Allow creation of this record in Terraform to overwrite an existing record, if any. This does not affect the ability to update the record in Terraform and does not prevent other resources within Terraform or manual Route 53 changes outside Terraform from overwriting this record. false by default. This configuration is not recommended for most environments | bool |`false`| no |
6
7
| enabled | Set to false to prevent the module from creating any resources | bool |`true`| no |
7
8
| evaluate_target_health | Set to true if you want Route 53 to determine whether to respond to DNS queries | bool |`false`| no |
8
9
| ipv6_enabled | Set to true to enable an AAAA DNS record to be set as well as the A record | bool |`false`| no |
Copy file name to clipboardExpand all lines: variables.tf
+6Lines changed: 6 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -48,3 +48,9 @@ variable "ipv6_enabled" {
48
48
default=false
49
49
description="Set to true to enable an AAAA DNS record to be set as well as the A record"
50
50
}
51
+
52
+
variable"allow_overwrite" {
53
+
type=bool
54
+
default=false
55
+
description="Allow creation of this record in Terraform to overwrite an existing record, if any. This does not affect the ability to update the record in Terraform and does not prevent other resources within Terraform or manual Route 53 changes outside Terraform from overwriting this record. false by default. This configuration is not recommended for most environments"
0 commit comments