-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy patht.txt
More file actions
93 lines (92 loc) · 3.11 KB
/
t.txt
File metadata and controls
93 lines (92 loc) · 3.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
.
├── ansible
│ ├── ansible.cfg
│ ├── deploy_keycloak.yml
│ ├── group_vars
│ │ ├── keycloak_server.yml
│ │ └── rds_postgres.yml
│ ├── inventory
│ │ └── hosts.ini
│ ├── roles
│ │ ├── deploy_keycloak
│ │ │ ├── files
│ │ │ │ └── docker-compose.yml
│ │ │ ├── handlers
│ │ │ │ └── main.yml
│ │ │ ├── tasks
│ │ │ │ └── main.yml
│ │ │ └── templates
│ │ │ ├── keycloak.env.j2
│ │ │ └── nginx.keycloak.conf.j2
│ │ └── postgresql_setup
│ │ └── tasks
│ │ └── main.yml
│ └── setup_databases.yml
├── aws
│ ├── compute.tf
│ ├── database.tf
│ ├── iam.tf
│ ├── main.tf
│ ├── messaging.tf
│ ├── network.tf
│ ├── outputs.tf
│ ├── storage.tf
│ └── variables.tf
├── config
│ └── gateway
│ └── application.yml
├── credentials
│ └── gcp-credentials.json
├── dbz.json
├── debezium
│ ├── debezium-final.json
│ └── debezium.json
├── docker-compose.override.yml
├── docker-compose.yml
├── keycloak
│ ├── nginx
│ │ └── keycloak
│ ├── realm-config
│ │ └── event-ticketing-realm.json
│ ├── terraform
│ │ ├── backend.dev.hcl
│ │ ├── backend.prod.hcl
│ │ ├── clients.tf
│ │ ├── main.tf
│ │ ├── outputs.tf
│ │ ├── realm.tf
│ │ ├── role.tf
│ │ ├── scopes.tf
│ │ ├── terraform.tfstate
│ │ ├── terraform.tfstate.backup
│ │ ├── terraform.tfvars
│ │ ├── users.tf
│ │ └── variables.tf
│ └── token
│ ├── admin.json
│ ├── m2m.json
│ └── user.json
├── README.md
├── scripts
│ ├── extract-secrets.sh
│ ├── init-dbs.sh
│ ├── init-debezium.sh
│ ├── localstack
│ │ ├── init-aws.sh
│ │ ├── scheduler-role-policy.json
│ │ └── scheduler-sqs-policy.json
│ ├── monitor-sqs-live.sh
│ ├── mysql-init.sql
│ ├── send-kafka-event.sh
│ └── test-scheduler.sh
├── themes
│ └── shadcn-theme
│ └── login
│ ├── resources
│ │ ├── css
│ │ │ └── styles.css
│ │ └── img
│ │ └── background.jpg
│ └── theme.properties
└── t.txt
30 directories, 61 files