Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Slack URL #5006

Merged
merged 1 commit into from
Sep 14, 2023
Merged
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
7 changes: 5 additions & 2 deletions infra/gcp/istio-io/run.tf
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# This hosts the Istio Slack invitation service.
# See https://docs.google.com/document/d/1Pf6vS5SiYuSD55atbosoSHktIi1N08p-P480buzCrDk/ for more info
# The invite link needs to be updated every 400 invites. TODO: find a way to automate this?
# The invite link needs to be updated every 2000 uses with a new link generated by Slack support.
# (Links generated from the Slack UI only allow 400 invites.)
# TODO: improve this
resource "google_cloud_run_v2_service" "redirector" {
location = "us-central1"
name = "redirector"
Expand All @@ -16,7 +18,8 @@ resource "google_cloud_run_v2_service" "redirector" {
image = "gcr.io/istio-testing/redirector"
env {
name = "REDIRECT_URL"
value = "https://join.slack.com/t/istio/shared_invite/zt-22l940p1h-HdIPYKoZy8JzOAqTCfuOnA"
# expires 2024-09-13 or after 2000 uses
value = "https://join.slack.com/t/istio/shared_invite/zt-23hxe505s-dqKi3O~~YzYA88Qw1ITzeA"
}
resources {
cpu_idle = true
Expand Down