Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F3281006
D12417.id41449.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
3 KB
Referenced Files
None
Subscribers
None
D12417.id41449.diff
View Options
diff --git a/services/terraform/remote/service_backup.tf b/services/terraform/remote/service_backup.tf
--- a/services/terraform/remote/service_backup.tf
+++ b/services/terraform/remote/service_backup.tf
@@ -1,5 +1,5 @@
locals {
- backup_service_image_tag = local.is_staging ? "0.4-staging" : "0.3"
+ backup_service_image_tag = local.is_staging ? "0.4.1-staging" : "0.4.1"
backup_service_container_name = "backup-service-server"
backup_service_server_image = "commapp/backup-server:${local.backup_service_image_tag}"
backup_service_container_http_port = 50052
@@ -31,6 +31,14 @@
# If this ever fails, we can fallback to blob public URL:
# "https://${local.blob_service_domain_name}"
},
+ {
+ name = "IDENTITY_SERVICE_ENDPOINT",
+ value = local.identity_local_url
+ },
+ {
+ name = "COMM_SERVICES_DISABLE_CSAT_VERIFICATION",
+ value = local.is_staging ? "false" : "true"
+ }
]
logConfiguration = {
"logDriver" = "awslogs"
diff --git a/services/terraform/remote/service_blob.tf b/services/terraform/remote/service_blob.tf
--- a/services/terraform/remote/service_blob.tf
+++ b/services/terraform/remote/service_blob.tf
@@ -1,5 +1,5 @@
locals {
- blob_service_image_tag = local.is_staging ? "latest" : "1.1.1"
+ blob_service_image_tag = local.is_staging ? "1.1.2-staging" : "1.1.2"
blob_service_container_name = "blob-service-server"
blob_service_server_image = "commapp/blob-server:${local.blob_service_image_tag}"
@@ -41,6 +41,14 @@
{
name = "BLOB_S3_BUCKET_NAME",
value = local.blob_service_s3_bucket
+ },
+ {
+ name = "IDENTITY_SERVICE_ENDPOINT",
+ value = local.identity_local_url
+ },
+ {
+ name = "COMM_SERVICES_DISABLE_CSAT_VERIFICATION",
+ value = local.is_staging ? "false" : "true"
}
]
logConfiguration = {
diff --git a/services/terraform/remote/service_reports.tf b/services/terraform/remote/service_reports.tf
--- a/services/terraform/remote/service_reports.tf
+++ b/services/terraform/remote/service_reports.tf
@@ -1,5 +1,5 @@
locals {
- reports_service_image_tag = local.is_staging ? "latest" : "0.1.1"
+ reports_service_image_tag = local.is_staging ? "0.1.2-staging" : "0.1.2"
reports_service_container_name = "reports-service-server"
reports_service_server_image = "commapp/reports-server:${local.reports_service_image_tag}"
reports_service_container_http_port = 50056
@@ -48,6 +48,14 @@
# If this ever fails, we can fallback to blob public URL:
# "https://${local.blob_service_domain_name}"
},
+ {
+ name = "IDENTITY_SERVICE_ENDPOINT",
+ value = local.identity_local_url
+ },
+ {
+ name = "COMM_SERVICES_DISABLE_CSAT_VERIFICATION",
+ value = local.is_staging ? "false" : "true"
+ }
]
# Don't enable e-mails on staging.
secrets = local.is_staging ? [] : [
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sun, Nov 17, 9:27 AM (18 h, 53 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
2521554
Default Alt Text
D12417.id41449.diff (3 KB)
Attached To
Mode
D12417: [terraform] Disable CSAT verification on prod
Attached
Detach File
Event Timeline
Log In to Comment