We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 90a3e64 commit edc7ee7Copy full SHA for edc7ee7
modules/backup/main.tf
@@ -33,7 +33,7 @@ locals {
33
resource "google_service_account" "sql_backup_serviceaccount" {
34
count = local.create_service_account ? 1 : 0
35
account_id = trimsuffix(substr("backup-${var.sql_instance}", 0, 28), "-")
36
- display_name = "Managed by Terraform - Service account for backup of SQL Instance ${var.sql_instance}"
+ display_name = substr("Managed by Terraform - Service account for backup of SQL Instance ${var.sql_instance}", 0, 100)
37
project = var.project_id
38
}
39
0 commit comments