firewall_domain_lists
Creates, updates, deletes or gets a firewall_domain_list
resource or lists firewall_domain_lists
in a region
Overview
Name | firewall_domain_lists |
Type | Resource |
Description | Resource schema for AWS::Route53Resolver::FirewallDomainList. |
Id | aws.route53resolver.firewall_domain_lists |
Fields
Name | Datatype | Description |
---|---|---|
id | string | ResourceId |
arn | string | Arn |
name | string | FirewallDomainListName |
domain_count | integer | Count |
status | string | ResolverFirewallDomainList, possible values are COMPLETE, DELETING, UPDATING, COMPLETE_IMPORT_FAILED, IMPORTING, and INACTIVE_OWNER_ACCOUNT_CLOSED. |
status_message | string | FirewallDomainListAssociationStatus |
managed_owner_name | string | ServicePrincipal |
creator_request_id | string | The id of the creator request. |
creation_time | string | Rfc3339TimeString |
modification_time | string | Rfc3339TimeString |
domains | array | An inline list of domains to use for this domain list. |
domain_file_url | string | S3 URL to import domains from. |
tags | array | Tags |
region | string | AWS region. |
Methods
Name | Accessible by | Required Params |
---|---|---|
create_resource | INSERT | region |
delete_resource | DELETE | data__Identifier, region |
update_resource | UPDATE | data__Identifier, data__PatchDocument, region |
list_resources | SELECT | region |
get_resource | SELECT | data__Identifier, region |
SELECT
examples
Gets all firewall_domain_lists
in a region.
SELECT
region,
id,
arn,
name,
domain_count,
status,
status_message,
managed_owner_name,
creator_request_id,
creation_time,
modification_time,
domains,
domain_file_url,
tags
FROM aws.route53resolver.firewall_domain_lists
WHERE region = 'us-east-1';
Gets all properties from an individual firewall_domain_list
.
SELECT
region,
id,
arn,
name,
domain_count,
status,
status_message,
managed_owner_name,
creator_request_id,
creation_time,
modification_time,
domains,
domain_file_url,
tags
FROM aws.route53resolver.firewall_domain_lists
WHERE region = 'us-east-1' AND data__Identifier = '<Id>';
INSERT
example
Use the following StackQL query and manifest file to create a new firewall_domain_list
resource, using stack-deploy
.
- Required Properties
- All Properties
- Manifest
/*+ create */
INSERT INTO aws.route53resolver.firewall_domain_lists (
Name,
Domains,
DomainFileUrl,
Tags,
region
)
SELECT
'{{ Name }}',
'{{ Domains }}',
'{{ DomainFileUrl }}',
'{{ Tags }}',
'{{ region }}';
/*+ create */
INSERT INTO aws.route53resolver.firewall_domain_lists (
Name,
Domains,
DomainFileUrl,
Tags,
region
)
SELECT
'{{ Name }}',
'{{ Domains }}',
'{{ DomainFileUrl }}',
'{{ Tags }}',
'{{ region }}';
version: 1
name: stack name
description: stack description
providers:
- aws
globals:
- name: region
value: '{{ vars.AWS_REGION }}'
resources:
- name: firewall_domain_list
props:
- name: Name
value: '{{ Name }}'
- name: Domains
value:
- '{{ Domains[0] }}'
- name: DomainFileUrl
value: '{{ DomainFileUrl }}'
- name: Tags
value:
- Key: '{{ Key }}'
Value: '{{ Value }}'
DELETE
example
/*+ delete */
DELETE FROM aws.route53resolver.firewall_domain_lists
WHERE data__Identifier = '<Id>'
AND region = 'us-east-1';
Permissions
To operate on the firewall_domain_lists
resource, the following permissions are required:
Create
route53resolver:*,
ec2:*,
logs:*,
iam:*,
lambda:*,
s3:*
List
route53resolver:*,
ec2:*,
logs:*,
iam:*,
lambda:*,
s3:*
Read
route53resolver:*,
ec2:*,
logs:*,
iam:*,
lambda:*,
s3:*
Delete
route53resolver:*,
ec2:*,
logs:*,
iam:*,
lambda:*,
s3:*
Update
route53resolver:*,
ec2:*,
logs:*,
iam:*,
lambda:*,
s3:*