mirror of
https://github.com/bpg/terraform-provider-proxmox.git
synced 2025-07-03 12:02:57 +00:00
Merge remote-tracking branch 'origin/main'
This commit is contained in:
commit
86a39f627b
@ -1078,6 +1078,15 @@
|
|||||||
"contributions": [
|
"contributions": [
|
||||||
"code"
|
"code"
|
||||||
]
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"login": "lingfish",
|
||||||
|
"name": "Jason Lingohr",
|
||||||
|
"avatar_url": "https://avatars.githubusercontent.com/u/1295960?v=4",
|
||||||
|
"profile": "https://blog.lucid.net.au",
|
||||||
|
"contributions": [
|
||||||
|
"doc"
|
||||||
|
]
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"contributorsPerLine": 7,
|
"contributorsPerLine": 7,
|
||||||
|
@ -153,6 +153,7 @@
|
|||||||
<td align="center" valign="top" width="14.28%"><a href="https://github.com/karliemeads"><img src="https://avatars.githubusercontent.com/u/68717336?v=4?s=100" width="100px;" alt="Karlie Meads"/><br /><sub><b>Karlie Meads</b></sub></a><br /><a href="https://github.com/bpg/terraform-provider-proxmox/commits?author=karliemeads" title="Code">💻</a></td>
|
<td align="center" valign="top" width="14.28%"><a href="https://github.com/karliemeads"><img src="https://avatars.githubusercontent.com/u/68717336?v=4?s=100" width="100px;" alt="Karlie Meads"/><br /><sub><b>Karlie Meads</b></sub></a><br /><a href="https://github.com/bpg/terraform-provider-proxmox/commits?author=karliemeads" title="Code">💻</a></td>
|
||||||
<td align="center" valign="top" width="14.28%"><a href="https://www.linkedin.com/in/charles-rodrigues-313ba9179/"><img src="https://avatars.githubusercontent.com/u/56375916?v=4?s=100" width="100px;" alt="Charles Rodrigues"/><br /><sub><b>Charles Rodrigues</b></sub></a><br /><a href="https://github.com/bpg/terraform-provider-proxmox/commits?author=chrodrigues" title="Documentation">📖</a></td>
|
<td align="center" valign="top" width="14.28%"><a href="https://www.linkedin.com/in/charles-rodrigues-313ba9179/"><img src="https://avatars.githubusercontent.com/u/56375916?v=4?s=100" width="100px;" alt="Charles Rodrigues"/><br /><sub><b>Charles Rodrigues</b></sub></a><br /><a href="https://github.com/bpg/terraform-provider-proxmox/commits?author=chrodrigues" title="Documentation">📖</a></td>
|
||||||
<td align="center" valign="top" width="14.28%"><a href="https://www.linkedin.com/in/connor-creek-318a86107/"><img src="https://avatars.githubusercontent.com/u/33628343?v=4?s=100" width="100px;" alt="Connor Creek"/><br /><sub><b>Connor Creek</b></sub></a><br /><a href="https://github.com/bpg/terraform-provider-proxmox/commits?author=CCreek96" title="Code">💻</a></td>
|
<td align="center" valign="top" width="14.28%"><a href="https://www.linkedin.com/in/connor-creek-318a86107/"><img src="https://avatars.githubusercontent.com/u/33628343?v=4?s=100" width="100px;" alt="Connor Creek"/><br /><sub><b>Connor Creek</b></sub></a><br /><a href="https://github.com/bpg/terraform-provider-proxmox/commits?author=CCreek96" title="Code">💻</a></td>
|
||||||
|
<td align="center" valign="top" width="14.28%"><a href="https://blog.lucid.net.au"><img src="https://avatars.githubusercontent.com/u/1295960?v=4?s=100" width="100px;" alt="Jason Lingohr"/><br /><sub><b>Jason Lingohr</b></sub></a><br /><a href="https://github.com/bpg/terraform-provider-proxmox/commits?author=lingfish" title="Documentation">📖</a></td>
|
||||||
</tr>
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
<tfoot>
|
<tfoot>
|
||||||
|
@ -41,6 +41,8 @@ resource "proxmox_virtual_environment_container" "ubuntu_container" {
|
|||||||
|
|
||||||
operating_system {
|
operating_system {
|
||||||
template_file_id = proxmox_virtual_environment_file.latest_ubuntu_22_jammy_lxc_img.id
|
template_file_id = proxmox_virtual_environment_file.latest_ubuntu_22_jammy_lxc_img.id
|
||||||
|
# Or you can use a volume ID, as obtained from a "pvesm list <storage>"
|
||||||
|
# template_file_id = "local:vztmpl/jammy-server-cloudimg-amd64.tar.gz"
|
||||||
type = "ubuntu"
|
type = "ubuntu"
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -187,6 +189,8 @@ output "ubuntu_container_public_key" {
|
|||||||
- `node_name` - (Required) The name of the node to assign the container to.
|
- `node_name` - (Required) The name of the node to assign the container to.
|
||||||
- `operating_system` - (Required) The Operating System configuration.
|
- `operating_system` - (Required) The Operating System configuration.
|
||||||
- `template_file_id` - (Required) The identifier for an OS template file.
|
- `template_file_id` - (Required) The identifier for an OS template file.
|
||||||
|
The ID format is `<datastore_id>:<content_type>/<file_name>`, for example `local:iso/jammy-server-cloudimg-amd64.tar.gz`. Can be also taken from
|
||||||
|
`proxmox_virtual_environment_download_file` resource, or from the output of `pvesm list <storage>`.
|
||||||
- `type` - (Optional) The type (defaults to `unmanaged`).
|
- `type` - (Optional) The type (defaults to `unmanaged`).
|
||||||
- `alpine` - Alpine.
|
- `alpine` - Alpine.
|
||||||
- `archlinux` - Arch Linux.
|
- `archlinux` - Arch Linux.
|
||||||
|
Loading…
Reference in New Issue
Block a user