aws_servicecatalog_portfolio_product_associations resource
Use the aws_servicecatalog_portfolio_product_associations
InSpec audit resource to test properties of a single specific AWS Service Catalog portfolio product association.
For additional information, including details on parameters and properties, see the AWS documentation on AWS Service Catalog Portfolio Product Association.
Syntax
Ensure that a portfolio exists.
describe aws_servicecatalog_portfolio_product_associations(product_id: 'PRODUCT_ID') do
it { should exist }
end
Parameters
product_id
(required)The product identifier.
Properties
ids
- The portfolio identifier.
arns
- The ARN assigned to the portfolio.
display_names
- The name to use for display purposes.
descriptions
- The description of the portfolio.
created_times
- The UTC time stamp of the creation time.
provider_names
- The name of the portfolio provider.
Examples
Ensure a product name is available:
describe aws_servicecatalog_portfolio_product_association(product_id: 'PRODUCT_ID') do
its('ids') { should include 'PORTFOLIO_ID' }
end
Ensure a status is available:
describe aws_servicecatalog_portfolio_product_association(product_id: 'PRODUCT_ID') do
its('provider_names') { should include 'PORTFOLIO_PROVIDER_NAME' }
end
Matchers
For a full list of available matchers, see our Universal Matchers page.The controls will pass if the list
method returns at least one result.
exist
Use should
to test that the entity exists.
describe aws_servicecatalog_portfolio_product_associations(product_id: 'PRODUCT_ID') do
it { should exist }
end
Use should_not
to test the entity does not exist.
describe aws_servicecatalog_portfolio_product_associations(product_id: 'PRODUCT_ID') do
it { should_not exist }
end
AWS Permissions
Your AWS principal will need the ServiceCatalog:Client:ListPortfoliosForProductOutput
action with Effect
set to Allow
.