fix(docs): correct url for template download in container resource example #1563
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Contributor's Note
/docs
for any user-facing features or additions./fwprovider/tests
for any new or updated resources / data sources.make example
to verify that the change works as expected.Description
#837 Changed the example container template url from:
http://download.proxmox.com/images/system/ubuntu-20.04-standard_20.04-1_amd64.tar.gz
to:
https://cloud-images.ubuntu.com/jammy/current/jammy-server-cloudimg-amd64.tar.gz
.The latter is a
QCOW v2
image, so following the example as it's currently written will create a container that doesn't start:__lxc_start: 2114 Failed to spawn container "1234"
.This PR just undoes this change in the docs so that following the example for the
proxmox_virtual_environment_container
resource works as expected.Community Note
Closes #0000 | Relates #0000