Skip to main content

tls_inspection_configurations

Creates, updates, deletes or gets a tls_inspection_configuration resource or lists tls_inspection_configurations in a region

Overview

Nametls_inspection_configurations
TypeResource
DescriptionResource type definition for AWS::NetworkFirewall::TLSInspectionConfiguration
Idaws.networkfirewall.tls_inspection_configurations

Fields

NameDatatypeDescription
tls_inspection_configuration_namestring
tls_inspection_configuration_arnstringA resource ARN.
tls_inspection_configurationobjectResource type definition for AWS::NetworkFirewall::TLSInspectionConfiguration
tls_inspection_configuration_idstring
descriptionstring
tagsarray
regionstringAWS region.

Methods

NameAccessible byRequired Params
create_resourceINSERTTLSInspectionConfigurationName, TLSInspectionConfiguration, region
delete_resourceDELETEdata__Identifier, region
update_resourceUPDATEdata__Identifier, data__PatchDocument, region
list_resourcesSELECTregion
get_resourceSELECTdata__Identifier, region

SELECT examples

Gets all tls_inspection_configurations in a region.

SELECT
region,
tls_inspection_configuration_name,
tls_inspection_configuration_arn,
tls_inspection_configuration,
tls_inspection_configuration_id,
description,
tags
FROM aws.networkfirewall.tls_inspection_configurations
WHERE region = 'us-east-1';

Gets all properties from an individual tls_inspection_configuration.

SELECT
region,
tls_inspection_configuration_name,
tls_inspection_configuration_arn,
tls_inspection_configuration,
tls_inspection_configuration_id,
description,
tags
FROM aws.networkfirewall.tls_inspection_configurations
WHERE region = 'us-east-1' AND data__Identifier = '<TLSInspectionConfigurationArn>';

INSERT example

Use the following StackQL query and manifest file to create a new tls_inspection_configuration resource, using stack-deploy.

/*+ create */
INSERT INTO aws.networkfirewall.tls_inspection_configurations (
TLSInspectionConfigurationName,
TLSInspectionConfiguration,
region
)
SELECT
'{{ TLSInspectionConfigurationName }}',
'{{ TLSInspectionConfiguration }}',
'{{ region }}';

DELETE example

/*+ delete */
DELETE FROM aws.networkfirewall.tls_inspection_configurations
WHERE data__Identifier = '<TLSInspectionConfigurationArn>'
AND region = 'us-east-1';

Permissions

To operate on the tls_inspection_configurations resource, the following permissions are required:

Create

iam:CreateServiceLinkedRole,
network-firewall:CreateTLSInspectionConfiguration,
network-firewall:DescribeTLSInspectionConfiguration,
network-firewall:TagResource

Read

network-firewall:DescribeTLSInspectionConfiguration,
network-firewall:ListTagsForResources

Update

network-firewall:UpdateTLSInspectionConfiguration,
network-firewall:DescribeTLSInspectionConfiguration,
network-firewall:TagResource,
network-firewall:UntagResource

Delete

network-firewall:DeleteTLSInspectionConfiguration,
network-firewall:DescribeTLSInspectionConfiguration,
network-firewall:UntagResource

List

network-firewall:ListTLSInspectionConfigurations