module Kitchen::Pulumi::ConfigAttribute::Backend

Attribute used to specify the Pulumi backend to use. It contains the URL to the backend, local or remote

Public Class Methods

included(plugin_class) click to toggle source
# File lib/kitchen/pulumi/config_attribute/backend.rb, line 14
def self.included(plugin_class)
  definer = ConfigAttributeDefiner.new(
    attribute: self,
    schema: ConfigSchemas::String,
  )
  definer.define(plugin_class: plugin_class)
end
to_sym() click to toggle source
# File lib/kitchen/pulumi/config_attribute/backend.rb, line 22
def self.to_sym
  :backend
end

Public Instance Methods

config_backend_default_value() click to toggle source
# File lib/kitchen/pulumi/config_attribute/backend.rb, line 28
def config_backend_default_value
  'https://api.pulumi.com'
end