Skip to content

Commit f6c1d68

Browse files
authored
Merge pull request #9 from meshcloud/feature/keycloak2
Feature/keycloak2
2 parents 7f7a855 + ee82efd commit f6c1d68

File tree

7 files changed

+6
-13
lines changed

7 files changed

+6
-13
lines changed

.github/actions/setup-nix-shell/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ outputs: {}
88
runs:
99
using: "composite"
1010
steps:
11-
- uses: nixbuild/nix-quick-install-action@v26
11+
- uses: nixbuild/nix-quick-install-action@v34
1212
with:
1313
# gh actions runners have 16 GiB of memory by default, we happily trade some of that for a significant speedup
1414
# of nix install (empirically this cut install times from from 75s to 30s when introduced)

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,4 +49,4 @@ repos:
4949
rev: v2.12.0
5050
hooks:
5151
- id: hadolint-docker
52-
args: ['--ignore', 'DL3008', '--ignore', 'DL3009', '--ignore', 'DL3018']
52+
args: ['--ignore', 'DL3008', '--ignore', 'DL3009', '--ignore', 'DL3018', '--ignore', 'DL3015', '--ignore', 'DL4006', '--ignore', 'DL3025', '--ignore', 'SC2028']

Caddyfile.azure

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -73,10 +73,6 @@
7373
header_up Accept-Encoding identity
7474
}
7575

76-
replace {
77-
"http://localhost:8083" "https://testminio.germanywestcentral.cloudapp.azure.com:8444"
78-
}
79-
8076
log {
8177
output stdout
8278
format json

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -304,7 +304,7 @@ No modules.
304304
| Name | Description | Type | Default | Required |
305305
|------|-------------|------|---------|:--------:|
306306
| <a name="input_allowed_ip_addresses"></a> [allowed\_ip\_addresses](#input\_allowed\_ip\_addresses) | Comma-separated list of IP addresses that will be allowed to access the MinIO service in CIDR format. Example: '203.0.113.0/32' for a single IP or '10.10.10.2/32,192.168.1.0/24' for multiple IPs. | `string` | `"10.10.10.2/32"` | no |
307-
| <a name="input_coraza_waf_image"></a> [coraza\_waf\_image](#input\_coraza\_waf\_image) | Coraza WAF container image | `string` | `"ghcr.io/meshcloud/minio_azure_container_app/coraza-caddy:caddy-2.8-coraza-v2.0.0"` | no |
307+
| <a name="input_coraza_waf_image"></a> [coraza\_waf\_image](#input\_coraza\_waf\_image) | Coraza WAF container image | `string` | `"ghcr.io/meshcloud/minio_azure_container_app/coraza-caddy:caddy-2.9.1-coraza-v2.0.0"` | no |
308308
| <a name="input_keycloak_admin_password"></a> [keycloak\_admin\_password](#input\_keycloak\_admin\_password) | Keycloak admin password | `string` | n/a | yes |
309309
| <a name="input_keycloak_admin_user"></a> [keycloak\_admin\_user](#input\_keycloak\_admin\_user) | Keycloak admin username | `string` | `"admin"` | no |
310310
| <a name="input_keycloak_test_user_email"></a> [keycloak\_test\_user\_email](#input\_keycloak\_test\_user\_email) | Keycloak test user email | `string` | `"[email protected]"` | no |

docker-compose/opk-providers-azure/providers

Lines changed: 0 additions & 2 deletions
This file was deleted.

main.tf

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -536,9 +536,8 @@ resource "azurerm_container_group" "minio_aci_container_group" {
536536
KC_BOOTSTRAP_ADMIN_USERNAME = var.keycloak_admin_user
537537
KC_BOOTSTRAP_ADMIN_PASSWORD = var.keycloak_admin_password
538538
KC_HTTP_ENABLED = "true"
539-
KC_HOSTNAME_STRICT = "false"
540-
KC_HOSTNAME_URL = "https://${azurerm_public_ip.agw_pip.fqdn}:8444"
541-
KC_HOSTNAME_ADMIN_URL = "https://${azurerm_public_ip.agw_pip.fqdn}:8444"
539+
KC_HOSTNAME = "https://${azurerm_public_ip.agw_pip.fqdn}:8444"
540+
KC_HOSTNAME_BACKCHANNEL_DYNAMIC = "true"
542541
KC_PROXY_HEADERS = "xforwarded"
543542
KC_PROXY = "edge"
544543
KEYCLOAK_IMPORT = "/opt/keycloak/data/import/minio-realm-config.json"

variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ variable "nginx_image" {
7070

7171
variable "coraza_waf_image" {
7272
type = string
73-
default = "ghcr.io/meshcloud/minio_azure_container_app/coraza-caddy:caddy-2.8-coraza-v2.0.0"
73+
default = "ghcr.io/meshcloud/minio_azure_container_app/coraza-caddy:caddy-2.9.1-coraza-v2.0.0"
7474
description = "Coraza WAF container image"
7575
}
7676

0 commit comments

Comments
 (0)