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" +}