Skip to main content

aws_network_manager_global_networks resource

Use the aws_network_manager_global_networks InSpec audit resource to test properties of a single specific AWS Network Manager global network.

The AWS::NetworkManager::GlobalNetwork resource describes one or more global networks.

For additional information, including details on parameters and properties, see the AWS documentation on AWS Network Manager Global Network.

Syntax

Ensure that Global Network ID exists.

describe aws_network_manager_global_networks do
  it { should exist }
end

Parameters

This resource does not require any parameters.

Properties

global_network_ids
global_network_id.
global_network_arns
global_network_arn.
descriptions
description.
created_at
created_at.
states
state.
tags
tags.

Examples

Ensure a Global Network ID is available:

describe aws_network_manager_global_networks do
  its('global_network_ids') { should include 'GLOBAL_NETWORK_ID' }
end

Ensure that the state is AVAILABLE:

describe aws_network_manager_global_networks do
    its('states') { should include 'AVAILABLE' }
end

Matchers

For a full list of available matchers, see our Universal Matchers page.

This resource has the following special matchers.

exist

Use should to test that the entity exists.

describe aws_network_manager_global_networks do
  it { should exist }
end

Use should_not to test the entity does not exist.

describe aws_network_manager_global_networks do
  it { should_not exist }
end

AWS Permissions

Your AWS principal will need the NetworkManager:Client:DescribeGlobalNetworksResponse action with Effect set to Allow.

Thank you for your feedback!

×