Skip to content

Commit

Permalink
Update changelog and test data
Browse files Browse the repository at this point in the history
  • Loading branch information
danischm committed Mar 6, 2024
1 parent 1ddb850 commit afd967c
Show file tree
Hide file tree
Showing 8 changed files with 26 additions and 14 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.5.6 (unreleased)

- Add support for descriptions to `iosxe_prefix_list` resource and data source

## 0.5.5

- Add `bandwidth` attribute to `iosxe_interface_ethernet` resource and data source
Expand Down
4 changes: 4 additions & 0 deletions docs/guides/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ description: |-

# Changelog

## 0.5.6 (unreleased)

- Add support for descriptions to `iosxe_prefix_list` resource and data source

## 0.5.5

- Add `bandwidth` attribute to `iosxe_interface_ethernet` resource and data source
Expand Down
4 changes: 2 additions & 2 deletions docs/resources/prefix_list.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ resource "iosxe_prefix_list" "example" {
]
prefix_list_description = [
{
name = "PREFIX_LIST_11"
description = "DIST_OF_THE_LIST"
name = "PREFIX_LIST_1"
description = "My prefix list"
}
]
}
Expand Down
4 changes: 2 additions & 2 deletions examples/resources/iosxe_prefix_list/resource.tf
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ resource "iosxe_prefix_list" "example" {
]
prefix_list_description = [
{
name = "PREFIX_LIST_11"
description = "DIST_OF_THE_LIST"
name = "PREFIX_LIST_1"
description = "My prefix list"
}
]
}
4 changes: 2 additions & 2 deletions gen/definitions/prefix_list.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ attributes:
type: List
attributes:
- yang_name: name
example: PREFIX_LIST_11
example: PREFIX_LIST_1
id: true
- yang_name: description
example: DIST_OF_THE_LIST
example: My prefix list
8 changes: 4 additions & 4 deletions internal/provider/data_source_iosxe_prefix_list_test.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions internal/provider/resource_iosxe_prefix_list_test.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions templates/guides/changelog.md.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ description: |-

# Changelog

## 0.5.6 (unreleased)

- Add support for descriptions to `iosxe_prefix_list` resource and data source

## 0.5.5

- Add `bandwidth` attribute to `iosxe_interface_ethernet` resource and data source
Expand Down

0 comments on commit afd967c

Please sign in to comment.