Skip to content

Commit

Permalink
fix: Switch default access to use legacy role (#60)
Browse files Browse the repository at this point in the history
Per hashicorp/terraform-provider-google#5350 (comment) we will keep seeing diffs on every apply if we set an IAM role here as the bigquery API always returns legacy role.

NOTE: This does *not* cause a breaking change and in fact will prevent users from seeing an unexpected diff if using the BQ module with access unset.
  • Loading branch information
umairidris authored Apr 23, 2020
1 parent 6fdc44e commit f7e2658
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ variable "access" {

# At least one owner access is required.
default = [{
role = "roles/bigquery.dataOwner"
role = "OWNER"
special_group = "projectOwners"
}]
}
Expand Down

0 comments on commit f7e2658

Please sign in to comment.