-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
25 lines (19 loc) · 777 Bytes
/
.env.example
File metadata and controls
25 lines (19 loc) · 777 Bytes
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
# Administration credentials
TEMP_ADMIN_EMAIL=admin@example.com
TEMP_ADMIN_PASSWORD=change-me-securely
# UI Next configuration
# URL interne du réseau Docker pour accéder au service ui-next
# Format: http://ui-next:3000 (accès interne) ou http://localhost:3000 (accès local)
SIMPLE_STACK_UI_URL=http://ui-next:3000
# UI authentication (mapped from admin credentials)
SIMPLE_STACK_UI_USER=${TEMP_ADMIN_EMAIL}
SIMPLE_STACK_UI_PASSWORD=${TEMP_ADMIN_PASSWORD}
# Terraform HTTP backend authentication
TF_HTTP_USERNAME=${TEMP_ADMIN_EMAIL}
TF_HTTP_PASSWORD=${TEMP_ADMIN_PASSWORD}
# NextAuth secret for session encryption
NEXTAUTH_SECRET=your-secret-key-change-in-production
# Optional: Custom ports
UI_NEXT_PORT=3000
# Optional: Ansible Java version
ANSIBLE_JAVA_VERSION=21