module Kitchen::Pulumi::ConfigAttribute::TestStackName

Attribute used to override the stack name to use for the stack created for an instance.

Public Class Methods

included(plugin_class) click to toggle source
# File lib/kitchen/pulumi/config_attribute/test_stack_name.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/test_stack_name.rb, line 22
def self.to_sym
  :test_stack_name
end

Public Instance Methods

config_test_stack_name_default_value() click to toggle source
# File lib/kitchen/pulumi/config_attribute/test_stack_name.rb, line 28
def config_test_stack_name_default_value
  ''
end