github.com/wata727/tflint@v0.12.2-0.20191013070026-96dd0d36f385/rules/awsrules/models/mappings/elasticbeanstalk.hcl (about)

     1  import = "aws-sdk-go/models/apis/elasticbeanstalk/2010-12-01/api-2.json"
     2  
     3  mapping "aws_elastic_beanstalk_application" {
     4    name        = ApplicationName
     5    description = Description
     6    tags        = Tags
     7  }
     8  
     9  mapping "aws_elastic_beanstalk_application_version" {
    10    name         = VersionLabel
    11    application  = ApplicationName
    12    description  = Description
    13    bucket       = S3Bucket
    14    key          = S3Key
    15    force_delete = ForceTerminate
    16    tags         = Tags
    17  }
    18  
    19  mapping "aws_elastic_beanstalk_configuration_template" {
    20    name                = ConfigurationTemplateName
    21    application         = ApplicationName
    22    description         = Description
    23    environment_id      = EnvironmentId
    24    setting             = ConfigurationOptionSettingsList
    25    solution_stack_name = SolutionStackName
    26  }
    27  
    28  mapping "aws_elastic_beanstalk_environment" {
    29    name                   = EnvironmentName
    30    application            = ApplicationName
    31    cname_prefix           = DNSCnamePrefix
    32    description            = Description
    33    tier                   = EnvironmentTier
    34    setting                = ConfigurationOptionSettingsList
    35    solution_stack_name    = SolutionStackName
    36    template_name          = ConfigurationTemplateName
    37    platform_arn           = PlatformArn
    38    version_label          = VersionLabel
    39    tags                   = Tags
    40  }