Skip to content

Commit

Permalink
fix: password must now have a nummeral
Browse files Browse the repository at this point in the history
  • Loading branch information
sjurtf committed Sep 27, 2024
1 parent 5b8a973 commit 97c911b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions netbox/resource_netbox_user_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ func TestAccNetboxUser_basic(t *testing.T) {
Config: fmt.Sprintf(`
resource "netbox_user" "test_basic" {
username = "%s"
password = "abcdefghijkl"
password = "abcdefghijkl1"
active = true
staff = true
}`, testName),
Expand Down Expand Up @@ -56,7 +56,7 @@ resource "netbox_group" "test_group" {
resource "netbox_user" "test_group" {
username = "%[1]s"
password = "abcdefghijkl"
password = "abcdefghijkl1"
active = true
staff = true
group_ids = [netbox_group.test_group.id]
Expand Down

0 comments on commit 97c911b

Please sign in to comment.