mirror of
https://gitea.fenix-dev.com/fenix-gitea-admin/iac-opentofu-private.git
synced 2025-10-27 07:43:07 +00:00
Compare commits
4 Commits
9c43a730c3
...
fc2b08a458
| Author | SHA1 | Date | |
|---|---|---|---|
| fc2b08a458 | |||
| fe6663673e | |||
| 2fcac46684 | |||
| 041f77429e |
18
LICENSE
Normal file
18
LICENSE
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
MIT License
|
||||||
|
|
||||||
|
Copyright (c) 2025 fenix-gitea-admin
|
||||||
|
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
|
||||||
|
associated documentation files (the "Software"), to deal in the Software without restriction, including
|
||||||
|
without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the
|
||||||
|
following conditions:
|
||||||
|
|
||||||
|
The above copyright notice and this permission notice shall be included in all copies or substantial
|
||||||
|
portions of the Software.
|
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
|
||||||
|
LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO
|
||||||
|
EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
||||||
|
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
|
||||||
|
USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||||
@ -2,4 +2,57 @@ proxmox_server = "proxmox.example.com"
|
|||||||
PM_API_TOKEN_ID = "tokenid"
|
PM_API_TOKEN_ID = "tokenid"
|
||||||
PM_API_TOKEN_SECRET = "tokensecret"
|
PM_API_TOKEN_SECRET = "tokensecret"
|
||||||
# tokenid is read automatically from PM_API_TOKEN_ID
|
# tokenid is read automatically from PM_API_TOKEN_ID
|
||||||
# token is read automatically from PM_API_TOKEN_SECRET
|
# token is read automatically from PM_API_TOKEN_SECRET
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
proxmox_server = "https://proxmox.example.com:443/api2/json"
|
||||||
|
proxmox_apikey = "user@pam!token=fdjkdslfjdsflkj"
|
||||||
|
proxmox_server_ssh = "127.0.0.1:1080"
|
||||||
|
proxmox_username_ssh = "user"
|
||||||
|
proxmox_password_ssh = "password"
|
||||||
|
# tokenid is read automatically from PM_API_TOKEN_ID
|
||||||
|
# token is read automatically from PM_API_TOKEN_SECRET
|
||||||
|
|
||||||
|
proxmox_k8s_vms = [
|
||||||
|
{
|
||||||
|
name = "k8s-master-01"
|
||||||
|
vm_id = 3001
|
||||||
|
node_name = "node"
|
||||||
|
ip = "192.168.1.99/24"
|
||||||
|
cores = 2
|
||||||
|
memory = 2000
|
||||||
|
disk_size = 32
|
||||||
|
data_store = "local-lvm"
|
||||||
|
gateway = "192.168.1.1"
|
||||||
|
extra_users = [
|
||||||
|
{
|
||||||
|
name = "user"
|
||||||
|
password = "pass"
|
||||||
|
groups = ["sudo"]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
extra_packages = []
|
||||||
|
extra_runcmd = []
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name = "k8s-worker-01"
|
||||||
|
vm_id = 3002
|
||||||
|
node_name = "node"
|
||||||
|
ip = "192.168.1.101/24"
|
||||||
|
cores = 1
|
||||||
|
memory = 2000
|
||||||
|
disk_size = 32
|
||||||
|
data_store = "local-lvm"
|
||||||
|
gateway = "192.168.1.1"
|
||||||
|
extra_users = [
|
||||||
|
{
|
||||||
|
name = "user"
|
||||||
|
password = "pass"
|
||||||
|
groups = ["sudo"]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
extra_packages = []
|
||||||
|
extra_runcmd = []
|
||||||
|
},
|
||||||
|
]
|
||||||
@ -3,4 +3,6 @@ vaultwarden_email = "admin@example.com"
|
|||||||
vaultwarden_master_password = "SuperSecretMasterPassword"
|
vaultwarden_master_password = "SuperSecretMasterPassword"
|
||||||
vaultwarden_admin_token = "tokenadmin"
|
vaultwarden_admin_token = "tokenadmin"
|
||||||
vaultwarden_client_id = "clientid"
|
vaultwarden_client_id = "clientid"
|
||||||
vaultwarden_client_secret = "clientsecret"
|
vaultwarden_client_secret = "clientsecret"
|
||||||
|
# email is read automatically from BW_EMAIL
|
||||||
|
# password is read automatically from BW_PASSWORD
|
||||||
Reference in New Issue
Block a user