class Object

Public Instance Methods

default_volumes() click to toggle source
# File lib/foreman_opentofu/provider_types/hetzner.rb, line 8
def default_volumes
  { name: 'volume1', size: 50, automount: true, format: 'ext4' }
end
provided_attributes() click to toggle source
# File lib/foreman_opentofu/provider_types/hetzner.rb, line 12
def provided_attributes
  {
    ip: :vm_ip_address,
    ip6: :vm_ip6_address,
  }
end
vm_ready(_vm) click to toggle source
# File lib/foreman_opentofu/provider_types/hetzner.rb, line 19
def vm_ready(_vm)
  # always ready ;-)
  true
end