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

Enable workload identity federation #3294

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ gem "redis", "~> 4.7"

gem 'kaminari'

gem "dfe-analytics", github: "DFE-Digital/dfe-analytics", tag: "v1.14.2"
gem "dfe-analytics", github: "DFE-Digital/dfe-analytics", ref: "848bed76e002a7d9b3a61ed1e682c8c5057277b6" # Test version
gem 'dfe-autocomplete', require: 'dfe/autocomplete', github: 'DFE-Digital/dfe-autocomplete'
gem 'dfe-reference-data', require: 'dfe/reference_data', github: 'DFE-Digital/dfe-reference-data', tag: 'v3.5.0'

Expand Down
6 changes: 3 additions & 3 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
GIT
remote: https://github.com/DFE-Digital/dfe-analytics.git
revision: 706595e52fed211cee53ad99ceaeaabb47a059cc
tag: v1.14.2
revision: 848bed76e002a7d9b3a61ed1e682c8c5057277b6
ref: 848bed76e002a7d9b3a61ed1e682c8c5057277b6
specs:
dfe-analytics (1.14.2)
dfe-analytics (1.15.1)
google-cloud-bigquery (~> 1.38)
httparty (~> 0.21)
multi_xml (~> 0.6.0)
Expand Down
3 changes: 3 additions & 0 deletions config/initializers/dfe_analytics.rb
Original file line number Diff line number Diff line change
Expand Up @@ -53,4 +53,7 @@
# config.environment = ENV.fetch('RAILS_ENV', 'development')

config.bigquery_maintenance_window = "08-09-2024 18:00..08-09-2024 19:00"

# Enable Azure to GCP Federation
config.azure_federated_auth = true
end
1 change: 1 addition & 0 deletions terraform/aks/application.tf
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ module "worker_application" {
max_memory = var.sidekiq_memory_max
replicas = var.sidekiq_replicas
enable_logit = var.enable_logit
enable_gcp_wif = true

enable_prometheus_monitoring = var.enable_prometheus_monitoring
}
Loading