@robinmordasiewicz/f5xc-terraform-mcp 3.10.3 → 3.10.5

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_fast_acl Resource - terraform-provider-f5xc"
3
3
  subcategory: "Security"
4
4
  description: |-
5
- Manages new Fast ACL rule, has specification to match source IP, source port and action to apply. in F5 Distributed Cloud.
5
+ Manages object, object contains rules to protect site from denial of service It has destination{destination IP, destination port) and references to. in F5 Distributed Cloud.
6
6
  ---
7
7
 
8
8
  # f5xc_fast_acl (Resource)
9
9
 
10
- Manages new Fast ACL rule, has specification to match source IP, source port and action to apply. in F5 Distributed Cloud.
10
+ Manages object, object contains rules to protect site from denial of service It has destination{destination IP, destination port) and references to. in F5 Distributed Cloud.
11
11
 
12
12
  ~> **Note** For more information about this resource, please refer to the [F5 XC API Documentation](https://docs.cloud.f5.com/docs/api/).
13
13
 
@@ -15,7 +15,7 @@ Manages new Fast ACL rule, has specification to match source IP, source port and
15
15
 
16
16
  ```terraform
17
17
  # Fast ACL Resource Example
18
- # Manages new Fast ACL rule, has specification to match source IP, source port and action to apply. in F5 Distributed Cloud.
18
+ # Manages object, object contains rules to protect site from denial of service It has destination{destination IP, destination port) and references to. in F5 Distributed Cloud.
19
19
 
20
20
  # Basic Fast ACL configuration
21
21
  resource "f5xc_fast_acl" "example" {
@@ -32,17 +32,17 @@ resource "f5xc_fast_acl" "example" {
32
32
  }
33
33
 
34
34
  # Resource-specific configuration
35
- # FastAclRuleAction specifies possible action to be applied...
36
- action {
37
- # Configure action settings
35
+ # Type establishes a direct reference from one object(the r...
36
+ protocol_policer {
37
+ # Configure protocol_policer settings
38
38
  }
39
- # Policer Reference. Reference to policer object.
40
- policer_action {
41
- # Configure policer_action settings
39
+ # [OneOf: re_acl, site_acl] Fast ACL for RE. Fast ACL defin...
40
+ re_acl {
41
+ # Configure re_acl settings
42
42
  }
43
- # Reference. A policer direct reference.
44
- ref {
45
- # Configure ref settings
43
+ # Enable this option
44
+ all_public_vips {
45
+ # Configure all_public_vips settings
46
46
  }
47
47
  }
48
48
  ```
@@ -66,13 +66,11 @@ resource "f5xc_fast_acl" "example" {
66
66
 
67
67
  ### Spec Argument Reference
68
68
 
69
- <a id="action"></a>&#x2022; [`action`](#action) - Optional Block<br>FastAclRuleAction specifies possible action to be applied on traffic, possible action include dropping, forwarding or ratelimiting the traffic<br>See [Action](#action) below for details.
69
+ <a id="protocol-policer"></a>&#x2022; [`protocol_policer`](#protocol-policer) - Optional Block<br>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 [Protocol Policer](#protocol-policer) below for details.
70
70
 
71
71
  -> **One of the following:**
72
- &#x2022; <a id="ip-prefix-set"></a>[`ip_prefix_set`](#ip-prefix-set) - Optional Block<br>List of references to ip_prefix_set objects<br>See [IP Prefix Set](#ip-prefix-set) below for details.
73
- <br><br>&#x2022; <a id="prefix"></a>[`prefix`](#prefix) - Optional Block<br>List of IP Address prefixes. Prefix must contain both prefix and prefix-length The list can contain mix of both IPv4 and IPv6 prefixes<br>See [Prefix](#prefix) below for details.
74
-
75
- <a id="port"></a>&#x2022; [`port`](#port) - Optional Block<br>Source Ports. L4 port numbers to match<br>See [Port](#port) below for details.
72
+ &#x2022; <a id="re-acl"></a>[`re_acl`](#re-acl) - Optional Block<br>Fast ACL for RE. Fast ACL definition for RE<br>See [RE ACL](#re-acl) below for details.
73
+ <br><br>&#x2022; <a id="site-acl"></a>[`site_acl`](#site-acl) - Optional Block<br>Fast ACL for Site. Fast ACL definition for Site<br>See [Site ACL](#site-acl) below for details.
76
74
 
77
75
  <a id="timeouts"></a>&#x2022; [`timeouts`](#timeouts) - Optional Block<br>See [Timeouts](#timeouts) below for details.
78
76
 
@@ -84,91 +82,199 @@ In addition to all arguments above, the following attributes are exported:
84
82
 
85
83
  ---
86
84
 
87
- #### Action
85
+ #### Protocol Policer
86
+
87
+ A [`protocol_policer`](#protocol-policer) block supports the following:
88
+
89
+ <a id="protocol-policer-name"></a>&#x2022; [`name`](#protocol-policer-name) - Optional String<br>When a configuration object(e.g. Virtual_host) refers to another(e.g route) then name will hold the referred object's(e.g. Route's) name
90
+
91
+ <a id="protocol-policer-namespace"></a>&#x2022; [`namespace`](#protocol-policer-namespace) - Optional String<br>When a configuration object(e.g. Virtual_host) refers to another(e.g route) then namespace will hold the referred object's(e.g. Route's) namespace
92
+
93
+ <a id="protocol-policer-tenant"></a>&#x2022; [`tenant`](#protocol-policer-tenant) - Optional String<br>When a configuration object(e.g. Virtual_host) refers to another(e.g route) then tenant will hold the referred object's(e.g. Route's) tenant
94
+
95
+ #### RE ACL
96
+
97
+ A [`re_acl`](#re-acl) block supports the following:
98
+
99
+ <a id="re-acl-all-public-vips"></a>&#x2022; [`all_public_vips`](#re-acl-all-public-vips) - Optional Block<br>Enable this option
100
+
101
+ <a id="re-acl-default-tenant-vip"></a>&#x2022; [`default_tenant_vip`](#re-acl-default-tenant-vip) - Optional Block<br>Enable this option
102
+
103
+ <a id="re-acl-fast-acl-rules"></a>&#x2022; [`fast_acl_rules`](#re-acl-fast-acl-rules) - Optional Block<br>Rules. Fast ACL rules to match<br>See [Fast ACL Rules](#re-acl-fast-acl-rules) below.
104
+
105
+ <a id="re-acl-selected-tenant-vip"></a>&#x2022; [`selected_tenant_vip`](#re-acl-selected-tenant-vip) - Optional Block<br>Specific Tenant VIP. Select various tenant public VIP(s)<br>See [Selected Tenant VIP](#re-acl-selected-tenant-vip) below.
106
+
107
+ #### RE ACL Fast ACL Rules
108
+
109
+ A [`fast_acl_rules`](#re-acl-fast-acl-rules) block (within [`re_acl`](#re-acl)) supports the following:
110
+
111
+ <a id="re-acl-fast-acl-rules-action"></a>&#x2022; [`action`](#re-acl-fast-acl-rules-action) - Optional Block<br>FastAclRuleAction specifies possible action to be applied on traffic, possible action include dropping, forwarding or ratelimiting the traffic<br>See [Action](#re-acl-fast-acl-rules-action) below.
112
+
113
+ <a id="re-acl-fast-acl-rules-ip-prefix-set"></a>&#x2022; [`ip_prefix_set`](#re-acl-fast-acl-rules-ip-prefix-set) - Optional Block<br>List of references to ip_prefix_set objects<br>See [IP Prefix Set](#re-acl-fast-acl-rules-ip-prefix-set) below.
114
+
115
+ <a id="re-acl-fast-acl-rules-metadata"></a>&#x2022; [`metadata`](#re-acl-fast-acl-rules-metadata) - Optional Block<br>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<br>See [Metadata](#re-acl-fast-acl-rules-metadata) below.
116
+
117
+ <a id="re-acl-fast-acl-rules-port"></a>&#x2022; [`port`](#re-acl-fast-acl-rules-port) - Optional Block<br>Source Ports. L4 port numbers to match<br>See [Port](#re-acl-fast-acl-rules-port) below.
118
+
119
+ <a id="re-acl-fast-acl-rules-prefix"></a>&#x2022; [`prefix`](#re-acl-fast-acl-rules-prefix) - Optional Block<br>List of IP Address prefixes. Prefix must contain both prefix and prefix-length The list can contain mix of both IPv4 and IPv6 prefixes<br>See [Prefix](#re-acl-fast-acl-rules-prefix) below.
120
+
121
+ #### RE ACL Fast ACL Rules Action
122
+
123
+ An [`action`](#re-acl-fast-acl-rules-action) block (within [`re_acl.fast_acl_rules`](#re-acl-fast-acl-rules)) supports the following:
124
+
125
+ <a id="action-09a22d"></a>&#x2022; [`policer_action`](#action-09a22d) - Optional Block<br>Policer Reference. Reference to policer object<br>See [Policer Action](#action-09a22d) below.
126
+
127
+ <a id="action-1f2796"></a>&#x2022; [`protocol_policer_action`](#action-1f2796) - Optional Block<br>Protocol Policer Reference. Reference to policer object<br>See [Protocol Policer Action](#action-1f2796) below.
128
+
129
+ <a id="action-551f44"></a>&#x2022; [`simple_action`](#action-551f44) - Optional String Defaults to `DENY`<br>Possible values are `DENY`, `ALLOW`<br>[Enum: DENY|ALLOW] FastAclRuleSimpleAction specifies simple action like PASS or DENY Drop the traffic Forward the traffic
130
+
131
+ #### RE ACL Fast ACL Rules Action Policer Action
132
+
133
+ <a id="deep-64211b"></a>Deeply nested **Action** block collapsed for readability.
134
+
135
+ #### RE ACL Fast ACL Rules Action Policer Action Ref
136
+
137
+ <a id="deep-f6253f"></a>Deeply nested **Ref** block collapsed for readability.
138
+
139
+ #### RE ACL Fast ACL Rules Action Protocol Policer Action
140
+
141
+ <a id="deep-eb61a3"></a>Deeply nested **Action** block collapsed for readability.
142
+
143
+ #### RE ACL Fast ACL Rules Action Protocol Policer Action Ref
144
+
145
+ <a id="deep-8ac143"></a>Deeply nested **Ref** block collapsed for readability.
146
+
147
+ #### RE ACL Fast ACL Rules IP Prefix Set
148
+
149
+ <a id="deep-5eb942"></a>Deeply nested **Set** block collapsed for readability.
150
+
151
+ #### RE ACL Fast ACL Rules IP Prefix Set Ref
152
+
153
+ <a id="deep-8005c0"></a>Deeply nested **Ref** block collapsed for readability.
154
+
155
+ #### RE ACL Fast ACL Rules Metadata
156
+
157
+ A [`metadata`](#re-acl-fast-acl-rules-metadata) block (within [`re_acl.fast_acl_rules`](#re-acl-fast-acl-rules)) supports the following:
158
+
159
+ <a id="spec-e77730"></a>&#x2022; [`description_spec`](#spec-e77730) - Optional String<br>Description. Human readable description
160
+
161
+ <a id="re-acl-fast-acl-rules-metadata-name"></a>&#x2022; [`name`](#re-acl-fast-acl-rules-metadata-name) - Optional String<br>Name of the message. The value of name has to follow DNS-1035 format
162
+
163
+ #### RE ACL Fast ACL Rules Port
164
+
165
+ A [`port`](#re-acl-fast-acl-rules-port) block (within [`re_acl.fast_acl_rules`](#re-acl-fast-acl-rules)) supports the following:
166
+
167
+ <a id="re-acl-fast-acl-rules-port-all"></a>&#x2022; [`all`](#re-acl-fast-acl-rules-port-all) - Optional Block<br>Enable this option
168
+
169
+ <a id="re-acl-fast-acl-rules-port-dns"></a>&#x2022; [`dns`](#re-acl-fast-acl-rules-port-dns) - Optional Block<br>Enable this option
170
+
171
+ <a id="re-acl-fast-acl-rules-port-user-defined"></a>&#x2022; [`user_defined`](#re-acl-fast-acl-rules-port-user-defined) - Optional Number<br>Matches the user defined port
172
+
173
+ #### RE ACL Fast ACL Rules Prefix
174
+
175
+ A [`prefix`](#re-acl-fast-acl-rules-prefix) block (within [`re_acl.fast_acl_rules`](#re-acl-fast-acl-rules)) supports the following:
176
+
177
+ <a id="re-acl-fast-acl-rules-prefix-prefix"></a>&#x2022; [`prefix`](#re-acl-fast-acl-rules-prefix-prefix) - Optional List<br>IP Address prefix in string format. String must contain both prefix and prefix-length
178
+
179
+ #### RE ACL Selected Tenant VIP
180
+
181
+ A [`selected_tenant_vip`](#re-acl-selected-tenant-vip) block (within [`re_acl`](#re-acl)) supports the following:
182
+
183
+ <a id="vip-1d894b"></a>&#x2022; [`default_tenant_vip`](#vip-1d894b) - Optional Bool<br>Include tenant VIP in list of specific VIP(s)
184
+
185
+ <a id="refs-523a60"></a>&#x2022; [`public_ip_refs`](#refs-523a60) - Optional Block<br>Select additional public VIP(s)<br>See [Public IP Refs](#refs-523a60) below.
186
+
187
+ #### RE ACL Selected Tenant VIP Public IP Refs
188
+
189
+ <a id="deep-2edc68"></a>Deeply nested **Refs** block collapsed for readability.
190
+
191
+ #### Site ACL
192
+
193
+ A [`site_acl`](#site-acl) block supports the following:
88
194
 
89
- An [`action`](#action) block supports the following:
195
+ <a id="site-acl-all-services"></a>&#x2022; [`all_services`](#site-acl-all-services) - Optional Block<br>Enable this option
90
196
 
91
- <a id="action-policer-action"></a>&#x2022; [`policer_action`](#action-policer-action) - Optional Block<br>Policer Reference. Reference to policer object<br>See [Policer Action](#action-policer-action) below.
197
+ <a id="site-acl-fast-acl-rules"></a>&#x2022; [`fast_acl_rules`](#site-acl-fast-acl-rules) - Optional Block<br>Rules. Fast ACL rules to match<br>See [Fast ACL Rules](#site-acl-fast-acl-rules) below.
92
198
 
93
- <a id="action-protocol-policer-action"></a>&#x2022; [`protocol_policer_action`](#action-protocol-policer-action) - Optional Block<br>Protocol Policer Reference. Reference to policer object<br>See [Protocol Policer Action](#action-protocol-policer-action) below.
199
+ <a id="site-acl-inside-network"></a>&#x2022; [`inside_network`](#site-acl-inside-network) - Optional Block<br>Enable this option
94
200
 
95
- <a id="action-simple-action"></a>&#x2022; [`simple_action`](#action-simple-action) - Optional String Defaults to `DENY`<br>Possible values are `DENY`, `ALLOW`<br>[Enum: DENY|ALLOW] FastAclRuleSimpleAction specifies simple action like PASS or DENY Drop the traffic Forward the traffic
201
+ <a id="site-acl-interface-services"></a>&#x2022; [`interface_services`](#site-acl-interface-services) - Optional Block<br>Enable this option
96
202
 
97
- #### Action Policer Action
203
+ <a id="site-acl-outside-network"></a>&#x2022; [`outside_network`](#site-acl-outside-network) - Optional Block<br>Enable this option
98
204
 
99
- A [`policer_action`](#action-policer-action) block (within [`action`](#action)) supports the following:
205
+ <a id="site-acl-vip-services"></a>&#x2022; [`vip_services`](#site-acl-vip-services) - Optional Block<br>Enable this option
100
206
 
101
- <a id="action-policer-action-ref"></a>&#x2022; [`ref`](#action-policer-action-ref) - Optional Block<br>Reference. A policer direct reference<br>See [Ref](#action-policer-action-ref) below.
207
+ #### Site ACL Fast ACL Rules
102
208
 
103
- #### Action Policer Action Ref
209
+ A [`fast_acl_rules`](#site-acl-fast-acl-rules) block (within [`site_acl`](#site-acl)) supports the following:
104
210
 
105
- A [`ref`](#action-policer-action-ref) block (within [`action.policer_action`](#action-policer-action)) supports the following:
211
+ <a id="site-acl-fast-acl-rules-action"></a>&#x2022; [`action`](#site-acl-fast-acl-rules-action) - Optional Block<br>FastAclRuleAction specifies possible action to be applied on traffic, possible action include dropping, forwarding or ratelimiting the traffic<br>See [Action](#site-acl-fast-acl-rules-action) below.
106
212
 
107
- <a id="action-policer-action-ref-kind"></a>&#x2022; [`kind`](#action-policer-action-ref-kind) - Optional String<br>When a configuration object(e.g. Virtual_host) refers to another(e.g route) then kind will hold the referred object's kind (e.g. 'route')
213
+ <a id="site-acl-fast-acl-rules-ip-prefix-set"></a>&#x2022; [`ip_prefix_set`](#site-acl-fast-acl-rules-ip-prefix-set) - Optional Block<br>List of references to ip_prefix_set objects<br>See [IP Prefix Set](#site-acl-fast-acl-rules-ip-prefix-set) below.
108
214
 
109
- <a id="action-policer-action-ref-name"></a>&#x2022; [`name`](#action-policer-action-ref-name) - Optional String<br>When a configuration object(e.g. Virtual_host) refers to another(e.g route) then name will hold the referred object's(e.g. Route's) name
215
+ <a id="site-acl-fast-acl-rules-metadata"></a>&#x2022; [`metadata`](#site-acl-fast-acl-rules-metadata) - Optional Block<br>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<br>See [Metadata](#site-acl-fast-acl-rules-metadata) below.
110
216
 
111
- <a id="action-policer-action-ref-namespace"></a>&#x2022; [`namespace`](#action-policer-action-ref-namespace) - Optional String<br>When a configuration object(e.g. Virtual_host) refers to another(e.g route) then namespace will hold the referred object's(e.g. Route's) namespace
217
+ <a id="site-acl-fast-acl-rules-port"></a>&#x2022; [`port`](#site-acl-fast-acl-rules-port) - Optional Block<br>Source Ports. L4 port numbers to match<br>See [Port](#site-acl-fast-acl-rules-port) below.
112
218
 
113
- <a id="action-policer-action-ref-tenant"></a>&#x2022; [`tenant`](#action-policer-action-ref-tenant) - Optional String<br>When a configuration object(e.g. Virtual_host) refers to another(e.g route) then tenant will hold the referred object's(e.g. Route's) tenant
219
+ <a id="site-acl-fast-acl-rules-prefix"></a>&#x2022; [`prefix`](#site-acl-fast-acl-rules-prefix) - Optional Block<br>List of IP Address prefixes. Prefix must contain both prefix and prefix-length The list can contain mix of both IPv4 and IPv6 prefixes<br>See [Prefix](#site-acl-fast-acl-rules-prefix) below.
114
220
 
115
- <a id="action-policer-action-ref-uid"></a>&#x2022; [`uid`](#action-policer-action-ref-uid) - Optional String<br>When a configuration object(e.g. Virtual_host) refers to another(e.g route) then uid will hold the referred object's(e.g. Route's) uid
221
+ #### Site ACL Fast ACL Rules Action
116
222
 
117
- #### Action Protocol Policer Action
223
+ An [`action`](#site-acl-fast-acl-rules-action) block (within [`site_acl.fast_acl_rules`](#site-acl-fast-acl-rules)) supports the following:
118
224
 
119
- A [`protocol_policer_action`](#action-protocol-policer-action) block (within [`action`](#action)) supports the following:
225
+ <a id="action-2f2674"></a>&#x2022; [`policer_action`](#action-2f2674) - Optional Block<br>Policer Reference. Reference to policer object<br>See [Policer Action](#action-2f2674) below.
120
226
 
121
- <a id="action-protocol-policer-action-ref"></a>&#x2022; [`ref`](#action-protocol-policer-action-ref) - Optional Block<br>Protocol policer Reference. Reference to protocol policer object<br>See [Ref](#action-protocol-policer-action-ref) below.
227
+ <a id="action-31624c"></a>&#x2022; [`protocol_policer_action`](#action-31624c) - Optional Block<br>Protocol Policer Reference. Reference to policer object<br>See [Protocol Policer Action](#action-31624c) below.
122
228
 
123
- #### Action Protocol Policer Action Ref
229
+ <a id="action-5a554b"></a>&#x2022; [`simple_action`](#action-5a554b) - Optional String Defaults to `DENY`<br>Possible values are `DENY`, `ALLOW`<br>[Enum: DENY|ALLOW] FastAclRuleSimpleAction specifies simple action like PASS or DENY Drop the traffic Forward the traffic
124
230
 
125
- A [`ref`](#action-protocol-policer-action-ref) block (within [`action.protocol_policer_action`](#action-protocol-policer-action)) supports the following:
231
+ #### Site ACL Fast ACL Rules Action Policer Action
126
232
 
127
- <a id="action-protocol-policer-action-ref-kind"></a>&#x2022; [`kind`](#action-protocol-policer-action-ref-kind) - Optional String<br>When a configuration object(e.g. Virtual_host) refers to another(e.g route) then kind will hold the referred object's kind (e.g. 'route')
233
+ <a id="deep-a4b94e"></a>Deeply nested **Action** block collapsed for readability.
128
234
 
129
- <a id="action-protocol-policer-action-ref-name"></a>&#x2022; [`name`](#action-protocol-policer-action-ref-name) - Optional String<br>When a configuration object(e.g. Virtual_host) refers to another(e.g route) then name will hold the referred object's(e.g. Route's) name
235
+ #### Site ACL Fast ACL Rules Action Policer Action Ref
130
236
 
131
- <a id="namespace-b31006"></a>&#x2022; [`namespace`](#namespace-b31006) - Optional String<br>When a configuration object(e.g. Virtual_host) refers to another(e.g route) then namespace will hold the referred object's(e.g. Route's) namespace
237
+ <a id="deep-e41b5f"></a>Deeply nested **Ref** block collapsed for readability.
132
238
 
133
- <a id="tenant-2622a3"></a>&#x2022; [`tenant`](#tenant-2622a3) - Optional String<br>When a configuration object(e.g. Virtual_host) refers to another(e.g route) then tenant will hold the referred object's(e.g. Route's) tenant
239
+ #### Site ACL Fast ACL Rules Action Protocol Policer Action
134
240
 
135
- <a id="action-protocol-policer-action-ref-uid"></a>&#x2022; [`uid`](#action-protocol-policer-action-ref-uid) - Optional String<br>When a configuration object(e.g. Virtual_host) refers to another(e.g route) then uid will hold the referred object's(e.g. Route's) uid
241
+ <a id="deep-a68215"></a>Deeply nested **Action** block collapsed for readability.
136
242
 
137
- #### IP Prefix Set
243
+ #### Site ACL Fast ACL Rules Action Protocol Policer Action Ref
138
244
 
139
- An [`ip_prefix_set`](#ip-prefix-set) block supports the following:
245
+ <a id="deep-9ef6c0"></a>Deeply nested **Ref** block collapsed for readability.
140
246
 
141
- <a id="ip-prefix-set-ref"></a>&#x2022; [`ref`](#ip-prefix-set-ref) - Optional Block<br>List of references to ip_prefix_set objects<br>See [Ref](#ip-prefix-set-ref) below.
247
+ #### Site ACL Fast ACL Rules IP Prefix Set
142
248
 
143
- #### IP Prefix Set Ref
249
+ <a id="deep-176f71"></a>Deeply nested **Set** block collapsed for readability.
144
250
 
145
- A [`ref`](#ip-prefix-set-ref) block (within [`ip_prefix_set`](#ip-prefix-set)) supports the following:
251
+ #### Site ACL Fast ACL Rules IP Prefix Set Ref
146
252
 
147
- <a id="ip-prefix-set-ref-kind"></a>&#x2022; [`kind`](#ip-prefix-set-ref-kind) - Optional String<br>When a configuration object(e.g. Virtual_host) refers to another(e.g route) then kind will hold the referred object's kind (e.g. 'route')
253
+ <a id="deep-be6e78"></a>Deeply nested **Ref** block collapsed for readability.
148
254
 
149
- <a id="ip-prefix-set-ref-name"></a>&#x2022; [`name`](#ip-prefix-set-ref-name) - Optional String<br>When a configuration object(e.g. Virtual_host) refers to another(e.g route) then name will hold the referred object's(e.g. Route's) name
255
+ #### Site ACL Fast ACL Rules Metadata
150
256
 
151
- <a id="ip-prefix-set-ref-namespace"></a>&#x2022; [`namespace`](#ip-prefix-set-ref-namespace) - Optional String<br>When a configuration object(e.g. Virtual_host) refers to another(e.g route) then namespace will hold the referred object's(e.g. Route's) namespace
257
+ A [`metadata`](#site-acl-fast-acl-rules-metadata) block (within [`site_acl.fast_acl_rules`](#site-acl-fast-acl-rules)) supports the following:
152
258
 
153
- <a id="ip-prefix-set-ref-tenant"></a>&#x2022; [`tenant`](#ip-prefix-set-ref-tenant) - Optional String<br>When a configuration object(e.g. Virtual_host) refers to another(e.g route) then tenant will hold the referred object's(e.g. Route's) tenant
259
+ <a id="spec-0b0675"></a>&#x2022; [`description_spec`](#spec-0b0675) - Optional String<br>Description. Human readable description
154
260
 
155
- <a id="ip-prefix-set-ref-uid"></a>&#x2022; [`uid`](#ip-prefix-set-ref-uid) - Optional String<br>When a configuration object(e.g. Virtual_host) refers to another(e.g route) then uid will hold the referred object's(e.g. Route's) uid
261
+ <a id="site-acl-fast-acl-rules-metadata-name"></a>&#x2022; [`name`](#site-acl-fast-acl-rules-metadata-name) - Optional String<br>Name of the message. The value of name has to follow DNS-1035 format
156
262
 
157
- #### Port
263
+ #### Site ACL Fast ACL Rules Port
158
264
 
159
- A [`port`](#port) block supports the following:
265
+ A [`port`](#site-acl-fast-acl-rules-port) block (within [`site_acl.fast_acl_rules`](#site-acl-fast-acl-rules)) supports the following:
160
266
 
161
- <a id="port-all"></a>&#x2022; [`all`](#port-all) - Optional Block<br>Enable this option
267
+ <a id="site-acl-fast-acl-rules-port-all"></a>&#x2022; [`all`](#site-acl-fast-acl-rules-port-all) - Optional Block<br>Enable this option
162
268
 
163
- <a id="port-dns"></a>&#x2022; [`dns`](#port-dns) - Optional Block<br>Enable this option
269
+ <a id="site-acl-fast-acl-rules-port-dns"></a>&#x2022; [`dns`](#site-acl-fast-acl-rules-port-dns) - Optional Block<br>Enable this option
164
270
 
165
- <a id="port-user-defined"></a>&#x2022; [`user_defined`](#port-user-defined) - Optional Number<br>Matches the user defined port
271
+ <a id="defined-3dc64a"></a>&#x2022; [`user_defined`](#defined-3dc64a) - Optional Number<br>Matches the user defined port
166
272
 
167
- #### Prefix
273
+ #### Site ACL Fast ACL Rules Prefix
168
274
 
169
- A [`prefix`](#prefix) block supports the following:
275
+ A [`prefix`](#site-acl-fast-acl-rules-prefix) block (within [`site_acl.fast_acl_rules`](#site-acl-fast-acl-rules)) supports the following:
170
276
 
171
- <a id="prefix-prefix"></a>&#x2022; [`prefix`](#prefix-prefix) - Optional List<br>IP Address prefix in string format. String must contain both prefix and prefix-length
277
+ <a id="site-acl-fast-acl-rules-prefix-prefix"></a>&#x2022; [`prefix`](#site-acl-fast-acl-rules-prefix-prefix) - Optional List<br>IP Address prefix in string format. String must contain both prefix and prefix-length
172
278
 
173
279
  #### Timeouts
174
280
 
@@ -2,12 +2,12 @@
2
2
  page_title: "f5xc_irule Resource - terraform-provider-f5xc"
3
3
  subcategory: "BIG-IP Integration"
4
4
  description: |-
5
- Manages a Irule resource in F5 Distributed Cloud for desired state for big-ip irule service. configuration.
5
+ Manages iRule in a given namespace. If one already exists it will give an error. in F5 Distributed Cloud.
6
6
  ---
7
7
 
8
8
  # f5xc_irule (Resource)
9
9
 
10
- Manages a Irule resource in F5 Distributed Cloud for desired state for big-ip irule service. configuration.
10
+ Manages iRule in a given namespace. If one already exists it will give an error. in F5 Distributed Cloud.
11
11
 
12
12
  ~> **Note** For more information about this resource, please refer to the [F5 XC API Documentation](https://docs.cloud.f5.com/docs/api/).
13
13
 
@@ -15,7 +15,7 @@ Manages a Irule resource in F5 Distributed Cloud for desired state for big-ip ir
15
15
 
16
16
  ```terraform
17
17
  # Irule Resource Example
18
- # Manages a Irule resource in F5 Distributed Cloud for desired state for big-ip irule service. configuration.
18
+ # Manages iRule in a given namespace. If one already exists it will give an error. in F5 Distributed Cloud.
19
19
 
20
20
  # Basic Irule configuration
21
21
  resource "f5xc_irule" "example" {
@@ -52,11 +52,9 @@ resource "f5xc_irule" "example" {
52
52
 
53
53
  ### Spec Argument Reference
54
54
 
55
- <a id="code"></a>&#x2022; [`code`](#code) - Optional String<br>IRule code content, this content will be base64 encoded for preserving formating
55
+ <a id="description-spec"></a>&#x2022; [`description_spec`](#description-spec) - Optional String<br>Specify Description for iRule
56
56
 
57
- <a id="irule-name"></a>&#x2022; [`irule_name`](#irule-name) - Optional String<br>IRule name. IRule name
58
-
59
- <a id="source"></a>&#x2022; [`source`](#source) - Optional String<br>IRule source. IRule generation/updation source
57
+ <a id="irule"></a>&#x2022; [`irule`](#irule) - Optional String<br>Www.internal.example.f5.com')} DNS::drop} irule content
60
58
 
61
59
  <a id="timeouts"></a>&#x2022; [`timeouts`](#timeouts) - Optional Block<br>See [Timeouts](#timeouts) below for details.
62
60