github.com/jpreese/tflint@v0.19.2-0.20200908152133-b01686250fb6/rules/awsrules/models/mappings/fsx.hcl (about)

     1  import = "aws-sdk-go/models/apis/fsx/2018-03-01/api-2.json"
     2  
     3  mapping "aws_fsx_lustre_file_system" {
     4    storage_capacity              = StorageCapacity
     5    subnet_ids                    = SubnetIds
     6    export_path                   = any // ArchivePath
     7    import_path                   = any // ArchivePath
     8    imported_file_chunk_size      = Megabytes
     9    security_group_ids            = SecurityGroupIds
    10    tags                          = Tags
    11    weekly_maintenance_start_time = WeeklyTime
    12  }
    13  
    14  mapping "aws_fsx_windows_file_system" {
    15    storage_capacity                  = StorageCapacity
    16    subnet_ids                        = SubnetIds
    17    throughput_capacity               = MegabytesPerSecond
    18    active_directory_id               = DirectoryId
    19    automatic_backup_retention_days   = AutomaticBackupRetentionDays
    20    copy_tags_to_backups              = Flag
    21    daily_automatic_backup_start_time = DailyTime
    22    kms_key_id                        = any // KmsKeyId
    23    security_group_ids                = SecurityGroupIds
    24    self_managed_active_directory     = SelfManagedActiveDirectoryConfiguration
    25    skip_final_backup                 = Flag
    26    tags                              = Tags
    27    weekly_maintenance_start_time     = WeeklyTime
    28  }