Skip to content

Commit

Permalink
fix: update readme and fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
Vincent Dupain committed Nov 3, 2024
1 parent 1865c93 commit 9443160
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Terraform module for creating a Kubernetes Cluster

* [Proxmox Virtual Environment 8.2.5](<https://www.proxmox.com/en/>)
* [Terraform v1.9.8](<https://developer.hashicorp.com/terraform>)
* [Talos](<https://www.talos.dev/v1.8/introduction/getting-started/>)
* [Talos v1.8](<https://www.talos.dev/v1.8/introduction/getting-started/>)
* [Kubernetes](<https://kubernetes.io/docs/reference/kubectl/>)
* [fluxcd 2.4.0](<https://fluxcd.io/>)

Expand Down Expand Up @@ -210,7 +210,7 @@ flux-system flux-system main@sha1:5902d505 False True Applied revision: mai
| <a name="input_cluster"></a> [cluster](#input\_cluster) | Cluster configuration | <pre>object({<br/> gateway = string<br/> cidr = number<br/> vlan_id = optional(number, null)<br/> name = string<br/> endpoint = string<br/> })</pre> | n/a | yes |
| <a name="input_github"></a> [github](#input\_github) | Github Flux GitOps configuration | <pre>object({<br/> token = string<br/> org = string<br/> repository = string<br/> })</pre> | `null` | no |
| <a name="input_pci"></a> [pci](#input\_pci) | Mapping PCI configuration | <pre>map(object({<br/> name = string<br/> id = string<br/> iommu_group = number<br/> node = string<br/> path = string<br/> subsystem_id = string<br/> }))</pre> | `null` | no |
| <a name="input_proxmox"></a> [proxmox](#input\_proxmox) | Proxmox configuration | <pre>object({<br/> endpoint = string<br/> insecure = bool<br/> username = string<br/> password = optional(string)<br/> api_token = string<br/> ssh_agent = optional(string,false)<br/> })</pre> | n/a | yes |
| <a name="input_proxmox"></a> [proxmox](#input\_proxmox) | Proxmox configuration | <pre>object({<br/> endpoint = string<br/> insecure = bool<br/> username = string<br/> password = optional(string)<br/> api_token = string<br/> ssh_agent = optional(string, false)<br/> })</pre> | n/a | yes |
| <a name="input_vms"></a> [vms](#input\_vms) | VMs configuration | <pre>map(object({<br/> host_node = string<br/> machine_type = string<br/> datastore_id = optional(string, "local-lvm")<br/> ip = string<br/> cpu = number<br/> ram_dedicated = number<br/> os_disk_size = number<br/> data_disk_size = number<br/> gpu = optional(bool, false)<br/> install_disk = string<br/> hostname = optional(string)<br/> }))</pre> | n/a | yes |

## Outputs
Expand Down
2 changes: 1 addition & 1 deletion modules/vms/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ No modules.
|------|-------------|------|---------|:--------:|
| <a name="input_cluster"></a> [cluster](#input\_cluster) | Cluster configuration | <pre>object({<br/> name = string<br/> gateway = string<br/> cidr = number<br/> vlan_id = optional(number, null)<br/> })</pre> | n/a | yes |
| <a name="input_pci"></a> [pci](#input\_pci) | Configuration mapping PCI | <pre>map(object({<br/> name = string<br/> id = string<br/> iommu_group = number<br/> node = string<br/> path = string<br/> subsystem_id = string<br/> }))</pre> | `null` | no |
| <a name="input_proxmox"></a> [proxmox](#input\_proxmox) | Proxmox configuration | <pre>object({<br/> endpoint = string<br/> insecure = bool<br/> username = string<br/> password = optional(string)<br/> api_token = string<br/> ssh_agent = optional(string,false)<br/> })</pre> | n/a | yes |
| <a name="input_proxmox"></a> [proxmox](#input\_proxmox) | Proxmox configuration | <pre>object({<br/> endpoint = string<br/> insecure = bool<br/> username = string<br/> password = optional(string)<br/> api_token = string<br/> ssh_agent = optional(string, false)<br/> })</pre> | n/a | yes |
| <a name="input_vms"></a> [vms](#input\_vms) | Configuration for cluster nodes | <pre>map(object({<br/> host_node = string<br/> machine_type = string<br/> datastore_id = optional(string, "local-lvm")<br/> ip = string<br/> cpu = number<br/> ram_dedicated = number<br/> os_disk_size = number<br/> data_disk_size = number<br/> gpu = optional(bool, false)<br/> }))</pre> | n/a | yes |

## Outputs
Expand Down
2 changes: 1 addition & 1 deletion modules/vms/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ variable "proxmox" {
username = string
password = optional(string)
api_token = string
ssh_agent = optional(string,false)
ssh_agent = optional(string, false)
})
sensitive = true
}
Expand Down
2 changes: 1 addition & 1 deletion variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ variable "proxmox" {
username = string
password = optional(string)
api_token = string
ssh_agent = optional(string,false)
ssh_agent = optional(string, false)
})
sensitive = true
}
Expand Down

0 comments on commit 9443160

Please sign in to comment.