Skip to content
This repository has been archived by the owner on Jan 17, 2025. It is now read-only.

example cross account resource name #78

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/resources/datashare_privilege.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ resource "redshift_datashare_privilege" "within_account" {
# Example: cross-account datashare permission.
# Note: you will also need to authorize the cross-account datashare
# in the AWS console after creating this resource
resource "redshift_datashare_privilege" "within_account" {
resource "redshift_datashare_privilege" "cross_account" {
name = redshift_datashare.share.name # Required
account = "123456789012" # Required
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ resource "redshift_datashare_privilege" "within_account" {
# Example: cross-account datashare permission.
# Note: you will also need to authorize the cross-account datashare
# in the AWS console after creating this resource
resource "redshift_datashare_privilege" "within_account" {
resource "redshift_datashare_privilege" "cross_account" {
name = redshift_datashare.share.name # Required
account = "123456789012" # Required
}