Skip to content
This repository has been archived by the owner on May 25, 2022. It is now read-only.

Commit

Permalink
Update examples for data.confluentcloud_service_account and data.conf…
Browse files Browse the repository at this point in the history
…luentcloud_environment. (#198)
  • Loading branch information
linouk23 committed Mar 9, 2022
1 parent 92e1c18 commit c8c55aa
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions docs/data-sources/confluentcloud_environment.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ data "confluentcloud_environment" "example_using_id" {
id = "env-abc123"
}
output "example_using_id" {
value = data.confluentcloud_environment.example_using_id
}
data "confluentcloud_environment" "example_using_name" {
display_name = "stag"
}
Expand Down
4 changes: 4 additions & 0 deletions docs/data-sources/confluentcloud_service_account.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ data "confluentcloud_service_account" "example_using_id" {
id = "sa-abc123"
}
output "example_using_id" {
value = data.confluentcloud_service_account.example_using_id
}
data "confluentcloud_service_account" "example_using_name" {
display_name = "test_sa"
}
Expand Down

0 comments on commit c8c55aa

Please sign in to comment.