@robinmordasiewicz/f5xc-terraform-mcp 2.6.4 → 2.7.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2,12 +2,12 @@
2
2
  page_title: "f5xc_dns_zone Resource - terraform-provider-f5xc"
3
3
  subcategory: "DNS"
4
4
  description: |-
5
- Manages DNS Zone in a given namespace. If one already exist it will give a error. in F5 Distributed Cloud.
5
+ Manages a DNS Zone resource in F5 Distributed Cloud.
6
6
  ---
7
7
 
8
8
  # f5xc_dns_zone (Resource)
9
9
 
10
- Manages DNS Zone in a given namespace. If one already exist it will give a error. in F5 Distributed Cloud.
10
+ Manages a DNS Zone resource in F5 Distributed Cloud.
11
11
 
12
12
  ~> **Note** Please refer to [DNS Zone API docs](https://docs.cloud.f5.com/docs-v2/api/dns-zone) to learn more.
13
13
 
@@ -15,7 +15,7 @@ Manages DNS Zone in a given namespace. If one already exist it will give a error
15
15
 
16
16
  ```terraform
17
17
  # DNS Zone Resource Example
18
- # Manages DNS Zone in a given namespace. If one already exist it will give a error. in F5 Distributed Cloud.
18
+ # Manages a DNS Zone resource in F5 Distributed Cloud.
19
19
 
20
20
  # Basic DNS Zone configuration
21
21
  resource "f5xc_dns_zone" "example" {
@@ -69,11 +69,15 @@ resource "f5xc_dns_zone" "example" {
69
69
 
70
70
  ### Spec Argument Reference
71
71
 
72
- -> **One of the following:**
73
- &#x2022; <a id="primary"></a>[`primary`](#primary) - Optional Block<br>PrimaryDNSCreateSpecType<br>See [Primary](#primary) below for details.
74
- <br><br>&#x2022; <a id="secondary"></a>[`secondary`](#secondary) - Optional Block<br>SecondaryDNSCreateSpecType
72
+ <a id="primary-servers"></a>&#x2022; [`primary_servers`](#primary-servers) - Optional List<br>DNS Primary Server IP
75
73
 
76
- <a id="timeouts"></a>&#x2022; [`timeouts`](#timeouts) - Optional Block
74
+ <a id="timeouts"></a>&#x2022; [`timeouts`](#timeouts) - Optional Block<br>See [Timeouts](#timeouts) below for details.
75
+
76
+ <a id="tsig-key-algorithm"></a>&#x2022; [`tsig_key_algorithm`](#tsig-key-algorithm) - Optional String Defaults to `UNDEFINED`<br>Possible values are `HMAC_MD5`, `UNDEFINED`, `HMAC_SHA1`, `HMAC_SHA224`, `HMAC_SHA256`, `HMAC_SHA384`, `HMAC_SHA512`<br>[Enum: HMAC_MD5|UNDEFINED|HMAC_SHA1|HMAC_SHA224|HMAC_SHA256|HMAC_SHA384|HMAC_SHA512] TSIG Key Algorithm. TSIG key value must be compatible with the specified algorithm - UNDEFINED: UNDEFINED - HMAC_MD5: HMAC_MD5 - HMAC_SHA1: HMAC_SHA1 - HMAC_SHA224: HMAC_SHA224 - HMAC_SHA256: HMAC_SHA256 - HMAC_SHA384: HMAC_SHA384 - HMAC_SHA512: HMAC_SHA512
77
+
78
+ <a id="tsig-key-name"></a>&#x2022; [`tsig_key_name`](#tsig-key-name) - Optional String<br>TSIG Key Name. TSIG key name as used in TSIG protocol extension
79
+
80
+ <a id="tsig-key-value"></a>&#x2022; [`tsig_key_value`](#tsig-key-value) - Optional Block<br>Secret. SecretType is used in an object to indicate a sensitive/confidential field<br>See [Tsig Key Value](#tsig-key-value) below for details.
77
81
 
78
82
  ### Attributes Reference
79
83
 
@@ -83,619 +87,43 @@ In addition to all arguments above, the following attributes are exported:
83
87
 
84
88
  ---
85
89
 
86
- #### Primary
87
-
88
- A [`primary`](#primary) block supports the following:
89
-
90
- <a id="primary-allow-http-lb-managed-records"></a>&#x2022; [`allow_http_lb_managed_records`](#primary-allow-http-lb-managed-records) - Optional Bool<br>Option to allow user-created HTTP, TCP, and CDN load balancer related resource records to be automatically managed in a protected RRset
91
-
92
- <a id="primary-default-rr-set-group"></a>&#x2022; [`default_rr_set_group`](#primary-default-rr-set-group) - Optional Block<br>Add and manage DNS resource record sets part of Default set group<br>See [Default Rr Set Group](#primary-default-rr-set-group) below.
93
-
94
- <a id="primary-default-soa-parameters"></a>&#x2022; [`default_soa_parameters`](#primary-default-soa-parameters) - Optional Block<br>Enable this option
95
-
96
- <a id="primary-dnssec-mode"></a>&#x2022; [`dnssec_mode`](#primary-dnssec-mode) - Optional Block<br>Disable<br>See [Dnssec Mode](#primary-dnssec-mode) below.
97
-
98
- <a id="primary-rr-set-group"></a>&#x2022; [`rr_set_group`](#primary-rr-set-group) - Optional Block<br>Create and manage set groups, and resource record sets within them, x-ves-io-managed set is managed by F5<br>See [Rr Set Group](#primary-rr-set-group) below.
99
-
100
- <a id="primary-soa-parameters"></a>&#x2022; [`soa_parameters`](#primary-soa-parameters) - Optional Block<br>SOARecordParameterConfig<br>See [Soa Parameters](#primary-soa-parameters) below.
101
-
102
- #### Primary Default Rr Set Group
103
-
104
- A [`default_rr_set_group`](#primary-default-rr-set-group) block (within [`primary`](#primary)) supports the following:
105
-
106
- <a id="primary-default-rr-set-group-a-record"></a>&#x2022; [`a_record`](#primary-default-rr-set-group-a-record) - Optional Block<br>DNSAResourceRecord. A Records<br>See [A Record](#primary-default-rr-set-group-a-record) below.
107
-
108
- <a id="record-6a4ef0"></a>&#x2022; [`aaaa_record`](#record-6a4ef0) - Optional Block<br>DNSAAAAResourceRecord. RecordSet for AAAA Records<br>See [Aaaa Record](#record-6a4ef0) below.
109
-
110
- <a id="record-026644"></a>&#x2022; [`afsdb_record`](#record-026644) - Optional Block<br>DNS AFSDB Record. DNS AFSDB Record<br>See [Afsdb Record](#record-026644) below.
111
-
112
- <a id="record-6e32d8"></a>&#x2022; [`alias_record`](#record-6e32d8) - Optional Block<br>DNSAliasResourceRecord<br>See [Alias Record](#record-6e32d8) below.
113
-
114
- <a id="primary-default-rr-set-group-caa-record"></a>&#x2022; [`caa_record`](#primary-default-rr-set-group-caa-record) - Optional Block<br>DNSCAAResourceRecord<br>See [Caa Record](#primary-default-rr-set-group-caa-record) below.
115
-
116
- <a id="primary-default-rr-set-group-cds-record"></a>&#x2022; [`cds_record`](#primary-default-rr-set-group-cds-record) - Optional Block<br>DNS CDS Record. DNS CDS Record<br>See [Cds Record](#primary-default-rr-set-group-cds-record) below.
117
-
118
- <a id="record-3ef094"></a>&#x2022; [`cert_record`](#record-3ef094) - Optional Block<br>DNS CERT Record. DNS CERT Record<br>See [Cert Record](#record-3ef094) below.
119
-
120
- <a id="record-8b5bff"></a>&#x2022; [`cname_record`](#record-8b5bff) - Optional Block<br>DNSCNAMEResourceRecord<br>See [Cname Record](#record-8b5bff) below.
121
-
122
- <a id="spec-4eb13e"></a>&#x2022; [`description_spec`](#spec-4eb13e) - Optional String<br>Comment
123
-
124
- <a id="primary-default-rr-set-group-ds-record"></a>&#x2022; [`ds_record`](#primary-default-rr-set-group-ds-record) - Optional Block<br>DNS DS Record. DNS DS Record<br>See [Ds Record](#primary-default-rr-set-group-ds-record) below.
125
-
126
- <a id="record-d72d9f"></a>&#x2022; [`eui48_record`](#record-d72d9f) - Optional Block<br>DNS EUI48 Record. DNS EUI48 Record<br>See [Eui48 Record](#record-d72d9f) below.
127
-
128
- <a id="record-d3d028"></a>&#x2022; [`eui64_record`](#record-d3d028) - Optional Block<br>DNS EUI64 Record. DNS EUI64 Record<br>See [Eui64 Record](#record-d3d028) below.
129
-
130
- <a id="primary-default-rr-set-group-lb-record"></a>&#x2022; [`lb_record`](#primary-default-rr-set-group-lb-record) - Optional Block<br>DNS Load Balancer Record. DNS Load Balancer Record<br>See [LB Record](#primary-default-rr-set-group-lb-record) below.
131
-
132
- <a id="primary-default-rr-set-group-loc-record"></a>&#x2022; [`loc_record`](#primary-default-rr-set-group-loc-record) - Optional Block<br>DNS LOC Record. DNS LOC Record<br>See [Loc Record](#primary-default-rr-set-group-loc-record) below.
133
-
134
- <a id="primary-default-rr-set-group-mx-record"></a>&#x2022; [`mx_record`](#primary-default-rr-set-group-mx-record) - Optional Block<br>DNSMXResourceRecord<br>See [Mx Record](#primary-default-rr-set-group-mx-record) below.
135
-
136
- <a id="record-16470e"></a>&#x2022; [`naptr_record`](#record-16470e) - Optional Block<br>DNS NAPTR Record. DNS NAPTR Record<br>See [Naptr Record](#record-16470e) below.
137
-
138
- <a id="primary-default-rr-set-group-ns-record"></a>&#x2022; [`ns_record`](#primary-default-rr-set-group-ns-record) - Optional Block<br>DNSNSResourceRecord<br>See [Ns Record](#primary-default-rr-set-group-ns-record) below.
139
-
140
- <a id="primary-default-rr-set-group-ptr-record"></a>&#x2022; [`ptr_record`](#primary-default-rr-set-group-ptr-record) - Optional Block<br>DNSPTRResourceRecord<br>See [Ptr Record](#primary-default-rr-set-group-ptr-record) below.
141
-
142
- <a id="primary-default-rr-set-group-srv-record"></a>&#x2022; [`srv_record`](#primary-default-rr-set-group-srv-record) - Optional Block<br>DNSSRVResourceRecord<br>See [Srv Record](#primary-default-rr-set-group-srv-record) below.
143
-
144
- <a id="record-cc1927"></a>&#x2022; [`sshfp_record`](#record-cc1927) - Optional Block<br>DNS SSHFP Record. DNS SSHFP Record<br>See [Sshfp Record](#record-cc1927) below.
145
-
146
- <a id="record-db5883"></a>&#x2022; [`tlsa_record`](#record-db5883) - Optional Block<br>DNS TLSA Record. DNS TLSA Record<br>See [Tlsa Record](#record-db5883) below.
147
-
148
- <a id="primary-default-rr-set-group-ttl"></a>&#x2022; [`ttl`](#primary-default-rr-set-group-ttl) - Optional Number<br>Time to live
149
-
150
- <a id="primary-default-rr-set-group-txt-record"></a>&#x2022; [`txt_record`](#primary-default-rr-set-group-txt-record) - Optional Block<br>DNSTXTResourceRecord<br>See [Txt Record](#primary-default-rr-set-group-txt-record) below.
151
-
152
- #### Primary Default Rr Set Group A Record
153
-
154
- An [`a_record`](#primary-default-rr-set-group-a-record) block (within [`primary.default_rr_set_group`](#primary-default-rr-set-group)) supports the following:
155
-
156
- <a id="name-59b7b8"></a>&#x2022; [`name`](#name-59b7b8) - Optional String<br>Record Name (Excluding Domain name). A Record name, please provide only the specific subdomain or record name without the base domain
157
-
158
- <a id="values-6ab550"></a>&#x2022; [`values`](#values-6ab550) - Optional List<br>IPv4 Addresses. A valid IPv4 address, for example: 1.1.1.1
159
-
160
- #### Primary Default Rr Set Group Aaaa Record
161
-
162
- An [`aaaa_record`](#record-6a4ef0) block (within [`primary.default_rr_set_group`](#primary-default-rr-set-group)) supports the following:
163
-
164
- <a id="name-c55d66"></a>&#x2022; [`name`](#name-c55d66) - Optional String<br>Record Name (Excluding Domain name). AAAA Record name, please provide only the specific subdomain or record name without the base domain
165
-
166
- <a id="values-6b9908"></a>&#x2022; [`values`](#values-6b9908) - Optional List<br>IPv6 Addresses. A valid IPv6 address, for example: 2001:0db8:85a3:0000:0000:8a2e:0370:7334
167
-
168
- #### Primary Default Rr Set Group Afsdb Record
169
-
170
- An [`afsdb_record`](#record-026644) block (within [`primary.default_rr_set_group`](#primary-default-rr-set-group)) supports the following:
171
-
172
- <a id="name-996289"></a>&#x2022; [`name`](#name-996289) - Optional String<br>Record Name (Excluding Domain name). AFSDB Record name, please provide only the specific subdomain or record name without the base domain
173
-
174
- <a id="values-776b5a"></a>&#x2022; [`values`](#values-776b5a) - Optional Block<br>AFSDB Value<br>See [Values](#values-776b5a) below.
175
-
176
- #### Primary Default Rr Set Group Afsdb Record Values
177
-
178
- <a id="deep-7224a6"></a>Deeply nested **Values** block collapsed for readability.
179
-
180
- #### Primary Default Rr Set Group Alias Record
181
-
182
- An [`alias_record`](#record-6e32d8) block (within [`primary.default_rr_set_group`](#primary-default-rr-set-group)) supports the following:
183
-
184
- <a id="value-da5681"></a>&#x2022; [`value`](#value-da5681) - Optional String<br>Domain. A valid domain name, for example: example.com
185
-
186
- #### Primary Default Rr Set Group Caa Record
187
-
188
- A [`caa_record`](#primary-default-rr-set-group-caa-record) block (within [`primary.default_rr_set_group`](#primary-default-rr-set-group)) supports the following:
189
-
190
- <a id="name-5c8e96"></a>&#x2022; [`name`](#name-5c8e96) - Optional String<br>Record Name (Excluding Domain name). CAA Record name, please provide only the specific subdomain or record name without the base domain
191
-
192
- <a id="values-41ba0e"></a>&#x2022; [`values`](#values-41ba0e) - Optional Block<br>CAA Record Value<br>See [Values](#values-41ba0e) below.
193
-
194
- #### Primary Default Rr Set Group Caa Record Values
195
-
196
- <a id="deep-31a8bf"></a>Deeply nested **Values** block collapsed for readability.
197
-
198
- #### Primary Default Rr Set Group Cds Record
199
-
200
- A [`cds_record`](#primary-default-rr-set-group-cds-record) block (within [`primary.default_rr_set_group`](#primary-default-rr-set-group)) supports the following:
201
-
202
- <a id="name-54ff93"></a>&#x2022; [`name`](#name-54ff93) - Optional String<br>Record Name (Excluding Domain name). CDS Record name, please provide only the specific subdomain or record name without the base domain
203
-
204
- <a id="values-970128"></a>&#x2022; [`values`](#values-970128) - Optional Block<br>DS Value<br>See [Values](#values-970128) below.
205
-
206
- #### Primary Default Rr Set Group Cds Record Values
207
-
208
- <a id="deep-6b61a3"></a>Deeply nested **Values** block collapsed for readability.
209
-
210
- #### Primary Default Rr Set Group Cds Record Values Sha1 Digest
211
-
212
- <a id="deep-336942"></a>Deeply nested **Digest** block collapsed for readability.
213
-
214
- #### Primary Default Rr Set Group Cds Record Values Sha256 Digest
215
-
216
- <a id="deep-2d3a7f"></a>Deeply nested **Digest** block collapsed for readability.
217
-
218
- #### Primary Default Rr Set Group Cds Record Values Sha384 Digest
219
-
220
- <a id="deep-107b34"></a>Deeply nested **Digest** block collapsed for readability.
221
-
222
- #### Primary Default Rr Set Group Cert Record
223
-
224
- A [`cert_record`](#record-3ef094) block (within [`primary.default_rr_set_group`](#primary-default-rr-set-group)) supports the following:
225
-
226
- <a id="name-f59c0d"></a>&#x2022; [`name`](#name-f59c0d) - Optional String<br>Record Name (Excluding Domain name). CERT Record name, please provide only the specific subdomain or record name without the base domain
227
-
228
- <a id="values-753772"></a>&#x2022; [`values`](#values-753772) - Optional Block<br>CERT Value<br>See [Values](#values-753772) below.
229
-
230
- #### Primary Default Rr Set Group Cert Record Values
231
-
232
- <a id="deep-4cedd5"></a>Deeply nested **Values** block collapsed for readability.
233
-
234
- #### Primary Default Rr Set Group Cname Record
235
-
236
- A [`cname_record`](#record-8b5bff) block (within [`primary.default_rr_set_group`](#primary-default-rr-set-group)) supports the following:
237
-
238
- <a id="name-73c139"></a>&#x2022; [`name`](#name-73c139) - Optional String<br>Record Name (Excluding Domain name). CName Record name, please provide only the specific subdomain or record name without the base domain
239
-
240
- <a id="value-8158f9"></a>&#x2022; [`value`](#value-8158f9) - Optional String<br>Domain
241
-
242
- #### Primary Default Rr Set Group Ds Record
243
-
244
- A [`ds_record`](#primary-default-rr-set-group-ds-record) block (within [`primary.default_rr_set_group`](#primary-default-rr-set-group)) supports the following:
245
-
246
- <a id="name-4472e4"></a>&#x2022; [`name`](#name-4472e4) - Optional String<br>Record Name (Excluding Domain name). DS Record name, please provide only the specific subdomain or record name without the base domain
247
-
248
- <a id="values-6934cb"></a>&#x2022; [`values`](#values-6934cb) - Optional Block<br>DS Value<br>See [Values](#values-6934cb) below.
249
-
250
- #### Primary Default Rr Set Group Ds Record Values
251
-
252
- <a id="deep-235ea7"></a>Deeply nested **Values** block collapsed for readability.
253
-
254
- #### Primary Default Rr Set Group Ds Record Values Sha1 Digest
255
-
256
- <a id="deep-093891"></a>Deeply nested **Digest** block collapsed for readability.
257
-
258
- #### Primary Default Rr Set Group Ds Record Values Sha256 Digest
259
-
260
- <a id="deep-b950dc"></a>Deeply nested **Digest** block collapsed for readability.
261
-
262
- #### Primary Default Rr Set Group Ds Record Values Sha384 Digest
263
-
264
- <a id="deep-6d3795"></a>Deeply nested **Digest** block collapsed for readability.
265
-
266
- #### Primary Default Rr Set Group Eui48 Record
267
-
268
- An [`eui48_record`](#record-d72d9f) block (within [`primary.default_rr_set_group`](#primary-default-rr-set-group)) supports the following:
269
-
270
- <a id="name-fcad11"></a>&#x2022; [`name`](#name-fcad11) - Optional String<br>Record Name (Excluding Domain name). EUI48 Record name, please provide only the specific subdomain or record name without the base domain
271
-
272
- <a id="value-9c7097"></a>&#x2022; [`value`](#value-9c7097) - Optional String<br>EUI48 Identifier. A valid eui48 identifier, for example: 01-23-45-67-89-ab
273
-
274
- #### Primary Default Rr Set Group Eui64 Record
275
-
276
- An [`eui64_record`](#record-d3d028) block (within [`primary.default_rr_set_group`](#primary-default-rr-set-group)) supports the following:
277
-
278
- <a id="name-148f42"></a>&#x2022; [`name`](#name-148f42) - Optional String<br>Record Name (Excluding Domain name). EUI64 Record name, please provide only the specific subdomain or record name without the base domain
279
-
280
- <a id="value-9f20fd"></a>&#x2022; [`value`](#value-9f20fd) - Optional String<br>EUI64 Identifier. A valid EUI64 identifier, for example: 01-23-45-67-89-ab-cd-ef
281
-
282
- #### Primary Default Rr Set Group LB Record
283
-
284
- A [`lb_record`](#primary-default-rr-set-group-lb-record) block (within [`primary.default_rr_set_group`](#primary-default-rr-set-group)) supports the following:
285
-
286
- <a id="name-423e27"></a>&#x2022; [`name`](#name-423e27) - Optional String<br>Record Name (Excluding Domain name). Load Balancer record name (except for SRV DNS Load balancer record) should be a simple record name and not a subdomain of a subdomain
287
-
288
- <a id="value-4b593b"></a>&#x2022; [`value`](#value-4b593b) - Optional Block<br>Object reference. This type establishes a direct reference from one object(the referrer) to another(the referred). Such a reference is in form of tenant/namespace/name<br>See [Value](#value-4b593b) below.
289
-
290
- #### Primary Default Rr Set Group LB Record Value
291
-
292
- <a id="deep-b51e9f"></a>Deeply nested **Value** block collapsed for readability.
293
-
294
- #### Primary Default Rr Set Group Loc Record
295
-
296
- A [`loc_record`](#primary-default-rr-set-group-loc-record) block (within [`primary.default_rr_set_group`](#primary-default-rr-set-group)) supports the following:
297
-
298
- <a id="name-568c6c"></a>&#x2022; [`name`](#name-568c6c) - Optional String<br>Record Name (Excluding Domain name). LOC Record name, please provide only the specific subdomain or record name without the base domain
299
-
300
- <a id="values-17d6e4"></a>&#x2022; [`values`](#values-17d6e4) - Optional Block<br>LOC Value<br>See [Values](#values-17d6e4) below.
301
-
302
- #### Primary Default Rr Set Group Loc Record Values
303
-
304
- <a id="deep-6917cb"></a>Deeply nested **Values** block collapsed for readability.
305
-
306
- #### Primary Default Rr Set Group Mx Record
307
-
308
- A [`mx_record`](#primary-default-rr-set-group-mx-record) block (within [`primary.default_rr_set_group`](#primary-default-rr-set-group)) supports the following:
309
-
310
- <a id="name-0ee04c"></a>&#x2022; [`name`](#name-0ee04c) - Optional String<br>Record Name (Excluding Domain name). MX Record name, please provide only the specific subdomain or record name without the base domain
311
-
312
- <a id="values-032997"></a>&#x2022; [`values`](#values-032997) - Optional Block<br>MX Record Value<br>See [Values](#values-032997) below.
313
-
314
- #### Primary Default Rr Set Group Mx Record Values
315
-
316
- <a id="deep-877222"></a>Deeply nested **Values** block collapsed for readability.
317
-
318
- #### Primary Default Rr Set Group Naptr Record
319
-
320
- A [`naptr_record`](#record-16470e) block (within [`primary.default_rr_set_group`](#primary-default-rr-set-group)) supports the following:
321
-
322
- <a id="name-9ba043"></a>&#x2022; [`name`](#name-9ba043) - Optional String<br>Record Name (Excluding Domain name). NAPTR Record name, please provide only the specific subdomain or record name without the base domain
323
-
324
- <a id="values-8f9cd5"></a>&#x2022; [`values`](#values-8f9cd5) - Optional Block<br>NAPTR Value<br>See [Values](#values-8f9cd5) below.
325
-
326
- #### Primary Default Rr Set Group Naptr Record Values
327
-
328
- <a id="deep-26168f"></a>Deeply nested **Values** block collapsed for readability.
329
-
330
- #### Primary Default Rr Set Group Ns Record
331
-
332
- A [`ns_record`](#primary-default-rr-set-group-ns-record) block (within [`primary.default_rr_set_group`](#primary-default-rr-set-group)) supports the following:
333
-
334
- <a id="name-816a8e"></a>&#x2022; [`name`](#name-816a8e) - Optional String<br>Record Name (Excluding Domain name). NS Record name, please provide only the specific subdomain or record name without the base domain
335
-
336
- <a id="values-0b1572"></a>&#x2022; [`values`](#values-0b1572) - Optional List<br>Name Servers
337
-
338
- #### Primary Default Rr Set Group Ptr Record
339
-
340
- A [`ptr_record`](#primary-default-rr-set-group-ptr-record) block (within [`primary.default_rr_set_group`](#primary-default-rr-set-group)) supports the following:
341
-
342
- <a id="name-87ab5a"></a>&#x2022; [`name`](#name-87ab5a) - Optional String<br>Record Name (Excluding Domain name). PTR Record name, please provide only the specific subdomain or record name without the base domain
343
-
344
- <a id="values-987974"></a>&#x2022; [`values`](#values-987974) - Optional List<br>Domain Name
345
-
346
- #### Primary Default Rr Set Group Srv Record
347
-
348
- A [`srv_record`](#primary-default-rr-set-group-srv-record) block (within [`primary.default_rr_set_group`](#primary-default-rr-set-group)) supports the following:
349
-
350
- <a id="name-d7e083"></a>&#x2022; [`name`](#name-d7e083) - Optional String<br>Record Name (Excluding Domain name). SRV Record name, please provide only the specific subdomain or record name without the base domain
351
-
352
- <a id="values-41fcb0"></a>&#x2022; [`values`](#values-41fcb0) - Optional Block<br>SRV Value<br>See [Values](#values-41fcb0) below.
353
-
354
- #### Primary Default Rr Set Group Srv Record Values
355
-
356
- <a id="deep-6da59a"></a>Deeply nested **Values** block collapsed for readability.
357
-
358
- #### Primary Default Rr Set Group Sshfp Record
359
-
360
- A [`sshfp_record`](#record-cc1927) block (within [`primary.default_rr_set_group`](#primary-default-rr-set-group)) supports the following:
361
-
362
- <a id="name-dba42e"></a>&#x2022; [`name`](#name-dba42e) - Optional String<br>Record Name (Excluding Domain name). SSHFP Record name, please provide only the specific subdomain or record name without the base domain
363
-
364
- <a id="values-eea3f2"></a>&#x2022; [`values`](#values-eea3f2) - Optional Block<br>SSHFP Value<br>See [Values](#values-eea3f2) below.
365
-
366
- #### Primary Default Rr Set Group Sshfp Record Values
367
-
368
- <a id="deep-240021"></a>Deeply nested **Values** block collapsed for readability.
369
-
370
- #### Primary Default Rr Set Group Sshfp Record Values Sha1 Fingerprint
371
-
372
- <a id="deep-080f3e"></a>Deeply nested **Fingerprint** block collapsed for readability.
373
-
374
- #### Primary Default Rr Set Group Sshfp Record Values Sha256 Fingerprint
375
-
376
- <a id="deep-95a797"></a>Deeply nested **Fingerprint** block collapsed for readability.
377
-
378
- #### Primary Default Rr Set Group Tlsa Record
379
-
380
- A [`tlsa_record`](#record-db5883) block (within [`primary.default_rr_set_group`](#primary-default-rr-set-group)) supports the following:
381
-
382
- <a id="name-687010"></a>&#x2022; [`name`](#name-687010) - Optional String<br>Record Name (Excluding Domain name). TLSA Record name, please provide only the specific subdomain or record name without the base domain
383
-
384
- <a id="values-49e48c"></a>&#x2022; [`values`](#values-49e48c) - Optional Block<br>TLSA Value<br>See [Values](#values-49e48c) below.
385
-
386
- #### Primary Default Rr Set Group Tlsa Record Values
387
-
388
- <a id="deep-1962b2"></a>Deeply nested **Values** block collapsed for readability.
389
-
390
- #### Primary Default Rr Set Group Txt Record
391
-
392
- A [`txt_record`](#primary-default-rr-set-group-txt-record) block (within [`primary.default_rr_set_group`](#primary-default-rr-set-group)) supports the following:
393
-
394
- <a id="name-ea3275"></a>&#x2022; [`name`](#name-ea3275) - Optional String<br>Record Name (Excluding Domain name). TXT Record name, please provide only the specific subdomain or record name without the base domain
395
-
396
- <a id="values-49770a"></a>&#x2022; [`values`](#values-49770a) - Optional List<br>Text
397
-
398
- #### Primary Dnssec Mode
399
-
400
- A [`dnssec_mode`](#primary-dnssec-mode) block (within [`primary`](#primary)) supports the following:
401
-
402
- <a id="primary-dnssec-mode-disable"></a>&#x2022; [`disable`](#primary-dnssec-mode-disable) - Optional Block<br>Enable this option
403
-
404
- <a id="primary-dnssec-mode-enable"></a>&#x2022; [`enable`](#primary-dnssec-mode-enable) - Optional Block<br>Enable. DNSSEC enable
405
-
406
- #### Primary Rr Set Group
407
-
408
- A [`rr_set_group`](#primary-rr-set-group) block (within [`primary`](#primary)) supports the following:
409
-
410
- <a id="primary-rr-set-group-metadata"></a>&#x2022; [`metadata`](#primary-rr-set-group-metadata) - Optional Block<br>Message Metadata. MessageMetaType is metadata (common attributes) of a message that only certain messages have. This information is propagated to the metadata of a child object that gets created from the containing message during view processing. The information in this type can be specified by user during create and replace APIs<br>See [Metadata](#primary-rr-set-group-metadata) below.
411
-
412
- <a id="primary-rr-set-group-rr-set"></a>&#x2022; [`rr_set`](#primary-rr-set-group-rr-set) - Optional Block<br>Resource Record Sets. Collection of DNS resource record sets<br>See [Rr Set](#primary-rr-set-group-rr-set) below.
413
-
414
- #### Primary Rr Set Group Metadata
415
-
416
- A [`metadata`](#primary-rr-set-group-metadata) block (within [`primary.rr_set_group`](#primary-rr-set-group)) supports the following:
417
-
418
- <a id="spec-383031"></a>&#x2022; [`description_spec`](#spec-383031) - Optional String<br>Description. Human readable description
419
-
420
- <a id="primary-rr-set-group-metadata-name"></a>&#x2022; [`name`](#primary-rr-set-group-metadata-name) - Optional String<br>Name. This is the name of the message. The value of name has to follow DNS-1035 format
421
-
422
- #### Primary Rr Set Group Rr Set
423
-
424
- A [`rr_set`](#primary-rr-set-group-rr-set) block (within [`primary.rr_set_group`](#primary-rr-set-group)) supports the following:
425
-
426
- <a id="primary-rr-set-group-rr-set-a-record"></a>&#x2022; [`a_record`](#primary-rr-set-group-rr-set-a-record) - Optional Block<br>DNSAResourceRecord. A Records<br>See [A Record](#primary-rr-set-group-rr-set-a-record) below.
427
-
428
- <a id="primary-rr-set-group-rr-set-aaaa-record"></a>&#x2022; [`aaaa_record`](#primary-rr-set-group-rr-set-aaaa-record) - Optional Block<br>DNSAAAAResourceRecord. RecordSet for AAAA Records<br>See [Aaaa Record](#primary-rr-set-group-rr-set-aaaa-record) below.
429
-
430
- <a id="record-5fff7a"></a>&#x2022; [`afsdb_record`](#record-5fff7a) - Optional Block<br>DNS AFSDB Record. DNS AFSDB Record<br>See [Afsdb Record](#record-5fff7a) below.
431
-
432
- <a id="record-62faa8"></a>&#x2022; [`alias_record`](#record-62faa8) - Optional Block<br>DNSAliasResourceRecord<br>See [Alias Record](#record-62faa8) below.
433
-
434
- <a id="primary-rr-set-group-rr-set-caa-record"></a>&#x2022; [`caa_record`](#primary-rr-set-group-rr-set-caa-record) - Optional Block<br>DNSCAAResourceRecord<br>See [Caa Record](#primary-rr-set-group-rr-set-caa-record) below.
435
-
436
- <a id="primary-rr-set-group-rr-set-cds-record"></a>&#x2022; [`cds_record`](#primary-rr-set-group-rr-set-cds-record) - Optional Block<br>DNS CDS Record. DNS CDS Record<br>See [Cds Record](#primary-rr-set-group-rr-set-cds-record) below.
437
-
438
- <a id="primary-rr-set-group-rr-set-cert-record"></a>&#x2022; [`cert_record`](#primary-rr-set-group-rr-set-cert-record) - Optional Block<br>DNS CERT Record. DNS CERT Record<br>See [Cert Record](#primary-rr-set-group-rr-set-cert-record) below.
439
-
440
- <a id="record-c00906"></a>&#x2022; [`cname_record`](#record-c00906) - Optional Block<br>DNSCNAMEResourceRecord<br>See [Cname Record](#record-c00906) below.
441
-
442
- <a id="spec-fe6497"></a>&#x2022; [`description_spec`](#spec-fe6497) - Optional String<br>Comment
443
-
444
- <a id="primary-rr-set-group-rr-set-ds-record"></a>&#x2022; [`ds_record`](#primary-rr-set-group-rr-set-ds-record) - Optional Block<br>DNS DS Record. DNS DS Record<br>See [Ds Record](#primary-rr-set-group-rr-set-ds-record) below.
445
-
446
- <a id="record-9b288e"></a>&#x2022; [`eui48_record`](#record-9b288e) - Optional Block<br>DNS EUI48 Record. DNS EUI48 Record<br>See [Eui48 Record](#record-9b288e) below.
447
-
448
- <a id="record-4ddc4d"></a>&#x2022; [`eui64_record`](#record-4ddc4d) - Optional Block<br>DNS EUI64 Record. DNS EUI64 Record<br>See [Eui64 Record](#record-4ddc4d) below.
449
-
450
- <a id="primary-rr-set-group-rr-set-lb-record"></a>&#x2022; [`lb_record`](#primary-rr-set-group-rr-set-lb-record) - Optional Block<br>DNS Load Balancer Record. DNS Load Balancer Record<br>See [LB Record](#primary-rr-set-group-rr-set-lb-record) below.
451
-
452
- <a id="primary-rr-set-group-rr-set-loc-record"></a>&#x2022; [`loc_record`](#primary-rr-set-group-rr-set-loc-record) - Optional Block<br>DNS LOC Record. DNS LOC Record<br>See [Loc Record](#primary-rr-set-group-rr-set-loc-record) below.
453
-
454
- <a id="primary-rr-set-group-rr-set-mx-record"></a>&#x2022; [`mx_record`](#primary-rr-set-group-rr-set-mx-record) - Optional Block<br>DNSMXResourceRecord<br>See [Mx Record](#primary-rr-set-group-rr-set-mx-record) below.
455
-
456
- <a id="record-8d4520"></a>&#x2022; [`naptr_record`](#record-8d4520) - Optional Block<br>DNS NAPTR Record. DNS NAPTR Record<br>See [Naptr Record](#record-8d4520) below.
457
-
458
- <a id="primary-rr-set-group-rr-set-ns-record"></a>&#x2022; [`ns_record`](#primary-rr-set-group-rr-set-ns-record) - Optional Block<br>DNSNSResourceRecord<br>See [Ns Record](#primary-rr-set-group-rr-set-ns-record) below.
459
-
460
- <a id="primary-rr-set-group-rr-set-ptr-record"></a>&#x2022; [`ptr_record`](#primary-rr-set-group-rr-set-ptr-record) - Optional Block<br>DNSPTRResourceRecord<br>See [Ptr Record](#primary-rr-set-group-rr-set-ptr-record) below.
461
-
462
- <a id="primary-rr-set-group-rr-set-srv-record"></a>&#x2022; [`srv_record`](#primary-rr-set-group-rr-set-srv-record) - Optional Block<br>DNSSRVResourceRecord<br>See [Srv Record](#primary-rr-set-group-rr-set-srv-record) below.
463
-
464
- <a id="record-736138"></a>&#x2022; [`sshfp_record`](#record-736138) - Optional Block<br>DNS SSHFP Record. DNS SSHFP Record<br>See [Sshfp Record](#record-736138) below.
465
-
466
- <a id="primary-rr-set-group-rr-set-tlsa-record"></a>&#x2022; [`tlsa_record`](#primary-rr-set-group-rr-set-tlsa-record) - Optional Block<br>DNS TLSA Record. DNS TLSA Record<br>See [Tlsa Record](#primary-rr-set-group-rr-set-tlsa-record) below.
467
-
468
- <a id="primary-rr-set-group-rr-set-ttl"></a>&#x2022; [`ttl`](#primary-rr-set-group-rr-set-ttl) - Optional Number<br>Time to live
469
-
470
- <a id="primary-rr-set-group-rr-set-txt-record"></a>&#x2022; [`txt_record`](#primary-rr-set-group-rr-set-txt-record) - Optional Block<br>DNSTXTResourceRecord<br>See [Txt Record](#primary-rr-set-group-rr-set-txt-record) below.
471
-
472
- #### Primary Rr Set Group Rr Set A Record
473
-
474
- <a id="deep-533e88"></a>Deeply nested **Record** block collapsed for readability.
475
-
476
- #### Primary Rr Set Group Rr Set Aaaa Record
477
-
478
- <a id="deep-42bc39"></a>Deeply nested **Record** block collapsed for readability.
479
-
480
- #### Primary Rr Set Group Rr Set Afsdb Record
481
-
482
- <a id="deep-477f8d"></a>Deeply nested **Record** block collapsed for readability.
483
-
484
- #### Primary Rr Set Group Rr Set Afsdb Record Values
485
-
486
- <a id="deep-7e2a54"></a>Deeply nested **Values** block collapsed for readability.
487
-
488
- #### Primary Rr Set Group Rr Set Alias Record
489
-
490
- <a id="deep-482a6d"></a>Deeply nested **Record** block collapsed for readability.
491
-
492
- #### Primary Rr Set Group Rr Set Caa Record
493
-
494
- <a id="deep-66ae76"></a>Deeply nested **Record** block collapsed for readability.
495
-
496
- #### Primary Rr Set Group Rr Set Caa Record Values
497
-
498
- <a id="deep-c100ec"></a>Deeply nested **Values** block collapsed for readability.
499
-
500
- #### Primary Rr Set Group Rr Set Cds Record
501
-
502
- <a id="deep-89f1fe"></a>Deeply nested **Record** block collapsed for readability.
503
-
504
- #### Primary Rr Set Group Rr Set Cds Record Values
505
-
506
- <a id="deep-ca260e"></a>Deeply nested **Values** block collapsed for readability.
507
-
508
- #### Primary Rr Set Group Rr Set Cds Record Values Sha1 Digest
509
-
510
- <a id="deep-8ef0c5"></a>Deeply nested **Digest** block collapsed for readability.
511
-
512
- #### Primary Rr Set Group Rr Set Cds Record Values Sha256 Digest
513
-
514
- <a id="deep-affe0f"></a>Deeply nested **Digest** block collapsed for readability.
515
-
516
- #### Primary Rr Set Group Rr Set Cds Record Values Sha384 Digest
517
-
518
- <a id="deep-023fe9"></a>Deeply nested **Digest** block collapsed for readability.
519
-
520
- #### Primary Rr Set Group Rr Set Cert Record
521
-
522
- <a id="deep-91c89f"></a>Deeply nested **Record** block collapsed for readability.
523
-
524
- #### Primary Rr Set Group Rr Set Cert Record Values
525
-
526
- <a id="deep-d23a7c"></a>Deeply nested **Values** block collapsed for readability.
527
-
528
- #### Primary Rr Set Group Rr Set Cname Record
529
-
530
- <a id="deep-ebf6fd"></a>Deeply nested **Record** block collapsed for readability.
531
-
532
- #### Primary Rr Set Group Rr Set Ds Record
533
-
534
- <a id="deep-56b2e6"></a>Deeply nested **Record** block collapsed for readability.
535
-
536
- #### Primary Rr Set Group Rr Set Ds Record Values
537
-
538
- <a id="deep-cc2512"></a>Deeply nested **Values** block collapsed for readability.
539
-
540
- #### Primary Rr Set Group Rr Set Ds Record Values Sha1 Digest
541
-
542
- <a id="deep-58123e"></a>Deeply nested **Digest** block collapsed for readability.
543
-
544
- #### Primary Rr Set Group Rr Set Ds Record Values Sha256 Digest
545
-
546
- <a id="deep-551194"></a>Deeply nested **Digest** block collapsed for readability.
547
-
548
- #### Primary Rr Set Group Rr Set Ds Record Values Sha384 Digest
549
-
550
- <a id="deep-7a7126"></a>Deeply nested **Digest** block collapsed for readability.
551
-
552
- #### Primary Rr Set Group Rr Set Eui48 Record
553
-
554
- <a id="deep-407753"></a>Deeply nested **Record** block collapsed for readability.
555
-
556
- #### Primary Rr Set Group Rr Set Eui64 Record
557
-
558
- <a id="deep-b94961"></a>Deeply nested **Record** block collapsed for readability.
559
-
560
- #### Primary Rr Set Group Rr Set LB Record
561
-
562
- <a id="deep-6258c5"></a>Deeply nested **Record** block collapsed for readability.
563
-
564
- #### Primary Rr Set Group Rr Set LB Record Value
565
-
566
- <a id="deep-96233f"></a>Deeply nested **Value** block collapsed for readability.
567
-
568
- #### Primary Rr Set Group Rr Set Loc Record
569
-
570
- <a id="deep-fdb347"></a>Deeply nested **Record** block collapsed for readability.
571
-
572
- #### Primary Rr Set Group Rr Set Loc Record Values
573
-
574
- <a id="deep-706e2d"></a>Deeply nested **Values** block collapsed for readability.
575
-
576
- #### Primary Rr Set Group Rr Set Mx Record
577
-
578
- <a id="deep-7baabe"></a>Deeply nested **Record** block collapsed for readability.
579
-
580
- #### Primary Rr Set Group Rr Set Mx Record Values
581
-
582
- <a id="deep-cc2223"></a>Deeply nested **Values** block collapsed for readability.
583
-
584
- #### Primary Rr Set Group Rr Set Naptr Record
585
-
586
- <a id="deep-4722da"></a>Deeply nested **Record** block collapsed for readability.
587
-
588
- #### Primary Rr Set Group Rr Set Naptr Record Values
589
-
590
- <a id="deep-978399"></a>Deeply nested **Values** block collapsed for readability.
591
-
592
- #### Primary Rr Set Group Rr Set Ns Record
593
-
594
- <a id="deep-d1e54f"></a>Deeply nested **Record** block collapsed for readability.
595
-
596
- #### Primary Rr Set Group Rr Set Ptr Record
597
-
598
- <a id="deep-22ef4c"></a>Deeply nested **Record** block collapsed for readability.
599
-
600
- #### Primary Rr Set Group Rr Set Srv Record
601
-
602
- <a id="deep-fd89f4"></a>Deeply nested **Record** block collapsed for readability.
603
-
604
- #### Primary Rr Set Group Rr Set Srv Record Values
605
-
606
- <a id="deep-468bb2"></a>Deeply nested **Values** block collapsed for readability.
607
-
608
- #### Primary Rr Set Group Rr Set Sshfp Record
609
-
610
- <a id="deep-902aa9"></a>Deeply nested **Record** block collapsed for readability.
611
-
612
- #### Primary Rr Set Group Rr Set Sshfp Record Values
613
-
614
- <a id="deep-8adb01"></a>Deeply nested **Values** block collapsed for readability.
615
-
616
- #### Primary Rr Set Group Rr Set Sshfp Record Values Sha1 Fingerprint
617
-
618
- <a id="deep-2e2d00"></a>Deeply nested **Fingerprint** block collapsed for readability.
619
-
620
- #### Primary Rr Set Group Rr Set Sshfp Record Values Sha256 Fingerprint
621
-
622
- <a id="deep-af6d05"></a>Deeply nested **Fingerprint** block collapsed for readability.
623
-
624
- #### Primary Rr Set Group Rr Set Tlsa Record
625
-
626
- <a id="deep-5be176"></a>Deeply nested **Record** block collapsed for readability.
627
-
628
- #### Primary Rr Set Group Rr Set Tlsa Record Values
629
-
630
- <a id="deep-a25b62"></a>Deeply nested **Values** block collapsed for readability.
631
-
632
- #### Primary Rr Set Group Rr Set Txt Record
633
-
634
- <a id="deep-6399bb"></a>Deeply nested **Record** block collapsed for readability.
635
-
636
- #### Primary Soa Parameters
637
-
638
- A [`soa_parameters`](#primary-soa-parameters) block (within [`primary`](#primary)) supports the following:
639
-
640
- <a id="primary-soa-parameters-expire"></a>&#x2022; [`expire`](#primary-soa-parameters-expire) - Optional Number<br>Expire. expire value indicates when secondary nameservers should stop answering request for this zone if primary does not respond
641
-
642
- <a id="primary-soa-parameters-negative-ttl"></a>&#x2022; [`negative_ttl`](#primary-soa-parameters-negative-ttl) - Optional Number<br>Negative TTL. negative TTL value indicates how long to cache non-existent resource record for this zone
643
-
644
- <a id="primary-soa-parameters-refresh"></a>&#x2022; [`refresh`](#primary-soa-parameters-refresh) - Optional Number<br>Refresh interval. refresh value indicates when secondary nameservers should query for the SOA record to detect zone changes
645
-
646
- <a id="primary-soa-parameters-retry"></a>&#x2022; [`retry`](#primary-soa-parameters-retry) - Optional Number<br>Retry Interval. retry value indicates when secondary nameservers should retry to request the serial number if primary does not respond
647
-
648
- <a id="primary-soa-parameters-ttl"></a>&#x2022; [`ttl`](#primary-soa-parameters-ttl) - Optional Number<br>TTL. SOA record time to live (in seconds)
649
-
650
- #### Secondary
651
-
652
- A [`secondary`](#secondary) block supports the following:
653
-
654
- <a id="secondary-primary-servers"></a>&#x2022; [`primary_servers`](#secondary-primary-servers) - Optional List<br>DNS Primary Server IP
655
-
656
- <a id="secondary-tsig-key-algorithm"></a>&#x2022; [`tsig_key_algorithm`](#secondary-tsig-key-algorithm) - Optional String Defaults to `UNDEFINED`<br>Possible values are `HMAC_MD5`, `UNDEFINED`, `HMAC_SHA1`, `HMAC_SHA224`, `HMAC_SHA256`, `HMAC_SHA384`, `HMAC_SHA512`<br>[Enum: HMAC_MD5|UNDEFINED|HMAC_SHA1|HMAC_SHA224|HMAC_SHA256|HMAC_SHA384|HMAC_SHA512] TSIG Key Algorithm. TSIG key value must be compatible with the specified algorithm - UNDEFINED: UNDEFINED - HMAC_MD5: HMAC_MD5 - HMAC_SHA1: HMAC_SHA1 - HMAC_SHA224: HMAC_SHA224 - HMAC_SHA256: HMAC_SHA256 - HMAC_SHA384: HMAC_SHA384 - HMAC_SHA512: HMAC_SHA512
657
-
658
- <a id="secondary-tsig-key-name"></a>&#x2022; [`tsig_key_name`](#secondary-tsig-key-name) - Optional String<br>TSIG Key Name. TSIG key name as used in TSIG protocol extension
659
-
660
- <a id="secondary-tsig-key-value"></a>&#x2022; [`tsig_key_value`](#secondary-tsig-key-value) - Optional Block<br>Secret. SecretType is used in an object to indicate a sensitive/confidential field<br>See [Tsig Key Value](#secondary-tsig-key-value) below.
661
-
662
- #### Secondary Tsig Key Value
90
+ #### Timeouts
663
91
 
664
- A [`tsig_key_value`](#secondary-tsig-key-value) block (within [`secondary`](#secondary)) supports the following:
92
+ A [`timeouts`](#timeouts) block supports the following:
665
93
 
666
- <a id="info-dc8549"></a>&#x2022; [`blindfold_secret_info`](#info-dc8549) - Optional Block<br>Blindfold Secret. BlindfoldSecretInfoType specifies information about the Secret managed by F5XC Secret Management<br>See [Blindfold Secret Info](#info-dc8549) below.
94
+ <a id="timeouts-create"></a>&#x2022; [`create`](#timeouts-create) - Optional String (Defaults to `10 minutes`)<br>Used when creating the resource
667
95
 
668
- <a id="info-712cd8"></a>&#x2022; [`clear_secret_info`](#info-712cd8) - Optional Block<br>In-Clear Secret. ClearSecretInfoType specifies information about the Secret that is not encrypted<br>See [Clear Secret Info](#info-712cd8) below.
96
+ <a id="timeouts-delete"></a>&#x2022; [`delete`](#timeouts-delete) - Optional String (Defaults to `10 minutes`)<br>Used when deleting the resource
669
97
 
670
- #### Secondary Tsig Key Value Blindfold Secret Info
98
+ <a id="timeouts-read"></a>&#x2022; [`read`](#timeouts-read) - Optional String (Defaults to `5 minutes`)<br>Used when retrieving the resource
671
99
 
672
- A [`blindfold_secret_info`](#info-dc8549) block (within [`secondary.tsig_key_value`](#secondary-tsig-key-value)) supports the following:
100
+ <a id="timeouts-update"></a>&#x2022; [`update`](#timeouts-update) - Optional String (Defaults to `10 minutes`)<br>Used when updating the resource
673
101
 
674
- <a id="provider-9d03fe"></a>&#x2022; [`decryption_provider`](#provider-9d03fe) - Optional String<br>Decryption Provider. Name of the Secret Management Access object that contains information about the backend Secret Management service
102
+ #### Tsig Key Value
675
103
 
676
- <a id="location-ef4bdb"></a>&#x2022; [`location`](#location-ef4bdb) - Optional String<br>Location. Location is the uri_ref. It could be in URL format for string:/// Or it could be a path if the store provider is an HTTP/HTTPS location
104
+ A [`tsig_key_value`](#tsig-key-value) block supports the following:
677
105
 
678
- <a id="provider-be11a9"></a>&#x2022; [`store_provider`](#provider-be11a9) - Optional String<br>Store Provider. Name of the Secret Management Access object that contains information about the store to get encrypted bytes This field needs to be provided only if the URL scheme is not string:///
106
+ <a id="tsig-key-value-blindfold-secret-info"></a>&#x2022; [`blindfold_secret_info`](#tsig-key-value-blindfold-secret-info) - Optional Block<br>Blindfold Secret. BlindfoldSecretInfoType specifies information about the Secret managed by F5XC Secret Management<br>See [Blindfold Secret Info](#tsig-key-value-blindfold-secret-info) below.
679
107
 
680
- #### Secondary Tsig Key Value Clear Secret Info
108
+ <a id="tsig-key-value-clear-secret-info"></a>&#x2022; [`clear_secret_info`](#tsig-key-value-clear-secret-info) - Optional Block<br>In-Clear Secret. ClearSecretInfoType specifies information about the Secret that is not encrypted<br>See [Clear Secret Info](#tsig-key-value-clear-secret-info) below.
681
109
 
682
- A [`clear_secret_info`](#info-712cd8) block (within [`secondary.tsig_key_value`](#secondary-tsig-key-value)) supports the following:
110
+ #### Tsig Key Value Blindfold Secret Info
683
111
 
684
- <a id="ref-f21028"></a>&#x2022; [`provider_ref`](#ref-f21028) - Optional String<br>Provider. Name of the Secret Management Access object that contains information about the store to get encrypted bytes This field needs to be provided only if the URL scheme is not string:///
112
+ A [`blindfold_secret_info`](#tsig-key-value-blindfold-secret-info) block (within [`tsig_key_value`](#tsig-key-value)) supports the following:
685
113
 
686
- <a id="url-f87f89"></a>&#x2022; [`url`](#url-f87f89) - Optional String<br>URL. URL of the secret. Currently supported URL schemes is string:///. For string:/// scheme, Secret needs to be encoded Base64 format. When asked for this secret, caller will get Secret bytes after Base64 decoding
114
+ <a id="provider-88cdbf"></a>&#x2022; [`decryption_provider`](#provider-88cdbf) - Optional String<br>Decryption Provider. Name of the Secret Management Access object that contains information about the backend Secret Management service
687
115
 
688
- #### Timeouts
116
+ <a id="location-8d9440"></a>&#x2022; [`location`](#location-8d9440) - Optional String<br>Location. Location is the uri_ref. It could be in URL format for string:/// Or it could be a path if the store provider is an HTTP/HTTPS location
689
117
 
690
- A [`timeouts`](#timeouts) block supports the following:
118
+ <a id="provider-2b7ae5"></a>&#x2022; [`store_provider`](#provider-2b7ae5) - Optional String<br>Store Provider. Name of the Secret Management Access object that contains information about the store to get encrypted bytes This field needs to be provided only if the URL scheme is not string:///
691
119
 
692
- <a id="timeouts-create"></a>&#x2022; [`create`](#timeouts-create) - Optional String (Defaults to `10 minutes`)<br>Used when creating the resource
120
+ #### Tsig Key Value Clear Secret Info
693
121
 
694
- <a id="timeouts-delete"></a>&#x2022; [`delete`](#timeouts-delete) - Optional String (Defaults to `10 minutes`)<br>Used when deleting the resource
122
+ A [`clear_secret_info`](#tsig-key-value-clear-secret-info) block (within [`tsig_key_value`](#tsig-key-value)) supports the following:
695
123
 
696
- <a id="timeouts-read"></a>&#x2022; [`read`](#timeouts-read) - Optional String (Defaults to `5 minutes`)<br>Used when retrieving the resource
124
+ <a id="ref-236f42"></a>&#x2022; [`provider_ref`](#ref-236f42) - Optional String<br>Provider. Name of the Secret Management Access object that contains information about the store to get encrypted bytes This field needs to be provided only if the URL scheme is not string:///
697
125
 
698
- <a id="timeouts-update"></a>&#x2022; [`update`](#timeouts-update) - Optional String (Defaults to `10 minutes`)<br>Used when updating the resource
126
+ <a id="tsig-key-value-clear-secret-info-url"></a>&#x2022; [`url`](#tsig-key-value-clear-secret-info-url) - Optional String<br>URL. URL of the secret. Currently supported URL schemes is string:///. For string:/// scheme, Secret needs to be encoded Base64 format. When asked for this secret, caller will get Secret bytes after Base64 decoding
699
127
 
700
128
  ---
701
129