module Kitchen::Pulumi::ConfigAttribute::RefreshConfig

Attribute used to determine if the stack config should be refreshed from the remote before every `pulumi up` command

Public Class Methods

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

Public Instance Methods

config_refresh_config_default_value() click to toggle source
# File lib/kitchen/pulumi/config_attribute/refresh_config.rb, line 28
def config_refresh_config_default_value
  false
end