module Chef::Provisioning::AWSDriver::TaggingStrategy::AutoScalingConvergeTags

Public Instance Methods

aws_tagger() click to toggle source
# File lib/chef/provisioning/aws_driver/tagging_strategy/auto_scaling.rb, line 5
def aws_tagger
  @aws_tagger ||= begin
    auto_scaling_strategy = Chef::Provisioning::AWSDriver::TaggingStrategy::AutoScaling.new(
      new_resource.driver.auto_scaling_client,
      new_resource.name,
      new_resource.aws_tags
    )
    Chef::Provisioning::AWSDriver::AWSTagger.new(auto_scaling_strategy, action_handler)
  end
end
converge_tags() click to toggle source
# File lib/chef/provisioning/aws_driver/tagging_strategy/auto_scaling.rb, line 16
def converge_tags
  aws_tagger.converge_tags
end