From bb672379f3364605e9e16348c0c8c74690bbb84b Mon Sep 17 00:00:00 2001 From: Bala Ganaparthi Date: Wed, 13 Apr 2022 11:18:28 -0500 Subject: [PATCH] Fix : Issue#1061 Added testcase and sample tf to handle old_password --- .../basic_with_credentials_updated_old_password.tf | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 examples/okta_user/basic_with_credentials_updated_old_password.tf diff --git a/examples/okta_user/basic_with_credentials_updated_old_password.tf b/examples/okta_user/basic_with_credentials_updated_old_password.tf new file mode 100644 index 000000000..902b0b241 --- /dev/null +++ b/examples/okta_user/basic_with_credentials_updated_old_password.tf @@ -0,0 +1,10 @@ +resource "okta_user" "test" { + first_name = "TestAcc" + last_name = "Smith" + login = "testAcc-replace_with_uuid@example.com" + email = "testAcc-replace_with_uuid@example.com" + password = "Super#Secret@007" + old_password = "SuperSecret007" + recovery_question = "0011 & 1010" + recovery_answer = "0010" +}