Skip to content

Commit cdfe258

Browse files
committed
fix typo inactivity_timer
Closes #139
1 parent 827270a commit cdfe258

9 files changed

+21
-21
lines changed

docs/data-sources/service_template.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ data "iosxe_service_template" "example" {
3535
- `access_groups` (Attributes List) Access list to be applied (see [below for nested schema](#nestedatt--access_groups))
3636
- `description` (String) Enter a description
3737
- `dns_acl_preauth` (String) pre-authentication
38-
- `ianctivity_timer` (Number) Enter a value between 1 and 65535
3938
- `id` (String) The path of the retrieved object.
39+
- `inactivity_timer` (Number) Enter a value between 1 and 65535
4040
- `inactivity_timer_probe` (Boolean) ARP probe
4141
- `interface_templates` (Attributes List) Interface template to be applied (see [below for nested schema](#nestedatt--interface_templates))
4242
- `linksec_policy` (String) Set the link security policy

docs/resources/service_template.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ resource "iosxe_service_template" "example" {
2020
name = "ag1"
2121
}
2222
]
23-
ianctivity_timer = 25
23+
inactivity_timer = 25
2424
inactivity_timer_probe = false
2525
vlan = 27
2626
voice_vlan = false
@@ -66,7 +66,7 @@ resource "iosxe_service_template" "example" {
6666
- `description` (String) Enter a description
6767
- `device` (String) A device name from the provider configuration.
6868
- `dns_acl_preauth` (String) pre-authentication
69-
- `ianctivity_timer` (Number) Enter a value between 1 and 65535
69+
- `inactivity_timer` (Number) Enter a value between 1 and 65535
7070
- Range: `1`-`65535`
7171
- `inactivity_timer_probe` (Boolean) ARP probe
7272
- `interface_templates` (Attributes List) Interface template to be applied (see [below for nested schema](#nestedatt--interface_templates))

examples/resources/iosxe_service_template/resource.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ resource "iosxe_service_template" "example" {
55
name = "ag1"
66
}
77
]
8-
ianctivity_timer = 25
8+
inactivity_timer = 25
99
inactivity_timer_probe = false
1010
vlan = 27
1111
voice_vlan = false

gen/definitions/service_template.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ attributes:
1515
id: true
1616
example: ag1
1717
- yang_name: inactivity-timer/value
18-
tf_name: ianctivity_timer
18+
tf_name: inactivity_timer
1919
example: 25
2020
- yang_name: inactivity-timer/probe
2121
example: false

internal/provider/data_source_iosxe_service_template.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

internal/provider/data_source_iosxe_service_template_test.go

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

internal/provider/model_iosxe_service_template.go

Lines changed: 10 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

internal/provider/resource_iosxe_service_template.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

internal/provider/resource_iosxe_service_template_test.go

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)