openstack-helm/tools/deployment/common/heat-vm-volume-attach.yaml
Vladimir Kozhukalov adc22b613b Update yamllint.conf
This PR updates the yaml linter configuration
to align it with what we have in the osh-infra
repo.

Change-Id: I3585fdc6663b2ae7bfb5c1d8a13672ac3055bf86
2025-03-12 22:59:57 -05:00

23 lines
381 B
YAML

---
heat_template_version: 2016-10-14
parameters:
instance_uuid:
type: string
resources:
cinder_volume:
type: OS::Cinder::Volume
properties:
name: vol1
size: 1
cinder_volume_attach:
type: OS::Cinder::VolumeAttachment
properties:
instance_uuid:
get_param: instance_uuid
volume_id:
get_resource: cinder_volume
...