-
Notifications
You must be signed in to change notification settings - Fork 71
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adjusting examples to use updated lib name
- Loading branch information
Showing
1 changed file
with
3 additions
and
3 deletions.
There are no files selected for viewing
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 |
---|---|---|
|
@@ -8,18 +8,18 @@ A `google_iam_service_account` is used to test a Google ServiceAccount resource | |
|
||
## Examples | ||
``` | ||
describe google_iam_service_account(project: 'chef-gcp-inspec', name: "[email protected]") do | ||
describe google_service_account(project: 'chef-gcp-inspec', name: "[email protected]") do | ||
it { should exist } | ||
its('display_name') { should cmp '' } | ||
end | ||
describe google_iam_service_account(project: 'chef-gcp-inspec', name: "[email protected]") do | ||
describe google_service_account(project: 'chef-gcp-inspec', name: "[email protected]") do | ||
it { should_not exist } | ||
end | ||
``` | ||
|
||
## Properties | ||
Properties that can be accessed from the `google_iam_service_account` resource: | ||
Properties that can be accessed from the `google_service_account` resource: | ||
|
||
|
||
* `name`: The name of the service account. | ||
|