Metadata-Version: 2.1
Name: cdktf-aws-secure
Version: 0.0.9
Summary: High level CDKTF construct to provision secure configurations with AWS
Home-page: https://github.com/shazi7804/cdktf-aws-secure-constructs.git
Author: Scott Liao<shazi7804@gmail.com>
License: Apache-2.0
Project-URL: Source, https://github.com/shazi7804/cdktf-aws-secure-constructs.git
Description: [![NPM version](https://badge.fury.io/js/cdktf-aws-secure.svg)](https://badge.fury.io/js/cdktf-aws-secure)
        [![PyPI version](https://badge.fury.io/py/cdktf-aws-secure.svg)](https://badge.fury.io/py/cdktf-aws-secure)
        ![Release](https://github.com/shazi7804/cdktf-aws-secure-constructs/workflows/Release/badge.svg)
        
        # Terraform CDK - AWS Secure constructs
        
        The Level 2 construct can be used to set up your AWS account with the reasonably secure configuration baseline. Internally it uses the [Terraform CDK](https://cdk.tf/) and the [AWS Provider](https://cdk.tf/provider/aws).
        
        ## Install
        
        Just the constructs
        
        ```
        npm install cdktf-aws-secure
        ```
        
        ## Example
        
        * Enable account password policy by default
        
        ```python
        # Example automatically generated without compilation. See https://github.com/aws/jsii/issues/826
        from constructs import Construct
        from cdktf import Resource
        from cdktf_aws_secure import CreateAccountPasswordPolicy
        
        class AwsSecure(Resource):
            def __init__(self, scope, name):
                super().__init__(scope, name)
        
                policy = CreateAccountPasswordPolicy(self, "DefaultAccountPwdPolicy")
        
                policy.add_config_rule()
        ```
        
        ## Docs
        
        See [API Docs](./API.md)
        
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: JavaScript
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Typing :: Typed
Classifier: Development Status :: 5 - Production/Stable
Classifier: License :: OSI Approved
Requires-Python: >=3.6
Description-Content-Type: text/markdown
