Skip to content

Commit

Permalink
Adjusting examples to use updated lib name
Browse files Browse the repository at this point in the history
  • Loading branch information
clintoncwolfe authored Feb 2, 2021
2 parents e419ef8 + 5412374 commit a1ac8be
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/resources/google_iam_service_account.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit a1ac8be

Please sign in to comment.