@@ -14,7 +14,7 @@ func TestAccPDNSRecord_A(t *testing.T) {
1414 Providers : testAccProviders ,
1515 CheckDestroy : testAccCheckPDNSRecordDestroy ,
1616 Steps : []resource.TestStep {
17- resource. TestStep {
17+ {
1818 Config : testPDNSRecordConfigA ,
1919 Check : resource .ComposeTestCheckFunc (
2020 testAccCheckPDNSRecordExists ("powerdns_record.test-a" ),
@@ -30,7 +30,7 @@ func TestAccPDNSRecord_AAAA(t *testing.T) {
3030 Providers : testAccProviders ,
3131 CheckDestroy : testAccCheckPDNSRecordDestroy ,
3232 Steps : []resource.TestStep {
33- resource. TestStep {
33+ {
3434 Config : testPDNSRecordConfigAAAA ,
3535 Check : resource .ComposeTestCheckFunc (
3636 testAccCheckPDNSRecordExists ("powerdns_record.test-aaaa" ),
@@ -46,7 +46,7 @@ func TestAccPDNSRecord_CNAME(t *testing.T) {
4646 Providers : testAccProviders ,
4747 CheckDestroy : testAccCheckPDNSRecordDestroy ,
4848 Steps : []resource.TestStep {
49- resource. TestStep {
49+ {
5050 Config : testPDNSRecordConfigCNAME ,
5151 Check : resource .ComposeTestCheckFunc (
5252 testAccCheckPDNSRecordExists ("powerdns_record.test-cname" ),
@@ -62,7 +62,7 @@ func TestAccPDNSRecord_HINFO(t *testing.T) {
6262 Providers : testAccProviders ,
6363 CheckDestroy : testAccCheckPDNSRecordDestroy ,
6464 Steps : []resource.TestStep {
65- resource. TestStep {
65+ {
6666 Config : testPDNSRecordConfigHINFO ,
6767 Check : resource .ComposeTestCheckFunc (
6868 testAccCheckPDNSRecordExists ("powerdns_record.test-hinfo" ),
@@ -78,7 +78,7 @@ func TestAccPDNSRecord_LOC(t *testing.T) {
7878 Providers : testAccProviders ,
7979 CheckDestroy : testAccCheckPDNSRecordDestroy ,
8080 Steps : []resource.TestStep {
81- resource. TestStep {
81+ {
8282 Config : testPDNSRecordConfigLOC ,
8383 Check : resource .ComposeTestCheckFunc (
8484 testAccCheckPDNSRecordExists ("powerdns_record.test-loc" ),
@@ -94,13 +94,13 @@ func TestAccPDNSRecord_MX(t *testing.T) {
9494 Providers : testAccProviders ,
9595 CheckDestroy : testAccCheckPDNSRecordDestroy ,
9696 Steps : []resource.TestStep {
97- resource. TestStep {
97+ {
9898 Config : testPDNSRecordConfigMX ,
9999 Check : resource .ComposeTestCheckFunc (
100100 testAccCheckPDNSRecordExists ("powerdns_record.test-mx" ),
101101 ),
102102 },
103- resource. TestStep {
103+ {
104104 Config : testPDNSRecordConfigMXMulti ,
105105 Check : resource .ComposeTestCheckFunc (
106106 testAccCheckPDNSRecordExists ("powerdns_record.test-mx-multi" ),
@@ -116,7 +116,7 @@ func TestAccPDNSRecord_NAPTR(t *testing.T) {
116116 Providers : testAccProviders ,
117117 CheckDestroy : testAccCheckPDNSRecordDestroy ,
118118 Steps : []resource.TestStep {
119- resource. TestStep {
119+ {
120120 Config : testPDNSRecordConfigNAPTR ,
121121 Check : resource .ComposeTestCheckFunc (
122122 testAccCheckPDNSRecordExists ("powerdns_record.test-naptr" ),
@@ -132,7 +132,7 @@ func TestAccPDNSRecord_NS(t *testing.T) {
132132 Providers : testAccProviders ,
133133 CheckDestroy : testAccCheckPDNSRecordDestroy ,
134134 Steps : []resource.TestStep {
135- resource. TestStep {
135+ {
136136 Config : testPDNSRecordConfigNS ,
137137 Check : resource .ComposeTestCheckFunc (
138138 testAccCheckPDNSRecordExists ("powerdns_record.test-ns" ),
@@ -148,7 +148,7 @@ func TestAccPDNSRecord_SPF(t *testing.T) {
148148 Providers : testAccProviders ,
149149 CheckDestroy : testAccCheckPDNSRecordDestroy ,
150150 Steps : []resource.TestStep {
151- resource. TestStep {
151+ {
152152 Config : testPDNSRecordConfigSPF ,
153153 Check : resource .ComposeTestCheckFunc (
154154 testAccCheckPDNSRecordExists ("powerdns_record.test-spf" ),
@@ -164,7 +164,7 @@ func TestAccPDNSRecord_SSHFP(t *testing.T) {
164164 Providers : testAccProviders ,
165165 CheckDestroy : testAccCheckPDNSRecordDestroy ,
166166 Steps : []resource.TestStep {
167- resource. TestStep {
167+ {
168168 Config : testPDNSRecordConfigSSHFP ,
169169 Check : resource .ComposeTestCheckFunc (
170170 testAccCheckPDNSRecordExists ("powerdns_record.test-sshfp" ),
@@ -180,7 +180,7 @@ func TestAccPDNSRecord_SRV(t *testing.T) {
180180 Providers : testAccProviders ,
181181 CheckDestroy : testAccCheckPDNSRecordDestroy ,
182182 Steps : []resource.TestStep {
183- resource. TestStep {
183+ {
184184 Config : testPDNSRecordConfigSRV ,
185185 Check : resource .ComposeTestCheckFunc (
186186 testAccCheckPDNSRecordExists ("powerdns_record.test-srv" ),
@@ -196,7 +196,7 @@ func TestAccPDNSRecord_TXT(t *testing.T) {
196196 Providers : testAccProviders ,
197197 CheckDestroy : testAccCheckPDNSRecordDestroy ,
198198 Steps : []resource.TestStep {
199- resource. TestStep {
199+ {
200200 Config : testPDNSRecordConfigTXT ,
201201 Check : resource .ComposeTestCheckFunc (
202202 testAccCheckPDNSRecordExists ("powerdns_record.test-txt" ),
@@ -364,4 +364,4 @@ resource "powerdns_record" "test-txt" {
364364 type = "TXT"
365365 ttl = 60
366366 records = [ "\"text record payload\"" ]
367- }`
367+ }`
0 commit comments