Skip to content

Commit 4554670

Browse files
authored
fix(backupdr): ensure service account id is long enough (#763)
* fix: ensure service account id is long enough * fix: remove google-beta from resources that don't require it
1 parent c57afd8 commit 4554670

File tree

1 file changed

+1
-3
lines changed
  • backupdr/backup_plan_association

1 file changed

+1
-3
lines changed

backupdr/backup_plan_association/main.tf

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,11 @@
1515
*/
1616

1717
resource "google_service_account" "default" {
18-
provider = google-beta
19-
account_id = "my-sa"
18+
account_id = "my-serviceaccount"
2019
display_name = "Custom SA for VM Instance"
2120
}
2221

2322
resource "google_compute_instance" "default" {
24-
provider = google-beta
2523
name = "my-instance"
2624
machine_type = "n2-standard-2"
2725
zone = "us-central1-a"

0 commit comments

Comments
 (0)