-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* bump deps * markdown lint * string format * user_group resource acc test
- Loading branch information
1 parent
ed11207
commit 3e4c1c3
Showing
4 changed files
with
94 additions
and
60 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -41,15 +41,12 @@ func testAccPreCheck(t *testing.T) { | |
|
||
func testAccUser(name string) string { | ||
return fmt.Sprintf(` | ||
resource "jumpcloud_user" "test_user" { | ||
username = "%s" | ||
email = "%[email protected]" | ||
firstname = "Firstname" | ||
lastname = "Lastname" | ||
enable_mfa = true | ||
} | ||
`, | ||
name, name, | ||
resource "jumpcloud_user" "test_user" { | ||
username = "%s" | ||
email = "%[email protected]" | ||
firstname = "Firstname" | ||
lastname = "Lastname" | ||
enable_mfa = true | ||
}`, name, name, | ||
) | ||
} |