class GeoEngineer::Resources::AwsWafWebAcl

AwsWafWebAcl is the aws_waf_web_acl terrform resource,

{www.terraform.io/docs/providers/aws/r/waf_web_acl.html Terraform Docs}

Public Class Methods

_fetch_remote_resources(provider) click to toggle source
# File lib/geoengineer/resources/aws_waf_web_acl.rb, line 12
def self._fetch_remote_resources(provider)
  AwsClients.waf(provider).list_web_acls['web_acls'].map(&:to_h).map do |acl|
    acl.merge(
      {
        _terraform_id: acl[:web_acl_id],
        _geo_id: acl[:name]
      }
    )
  end
end

Public Instance Methods

support_tags?() click to toggle source
# File lib/geoengineer/resources/aws_waf_web_acl.rb, line 23
def support_tags?
  false
end