Terraform module -
It's 100% Open Source and licensed under the APACHE2.
This is just a very basic example.
$ checkov -d . --external-checks-dir checkov/
...
Include module.codeartifact.tf this repository as a module in your existing terraform code:
module "codeartifact" {
source = "JamesWoolfenden/codeartifact/aws"
version = "0.0.1"
common_tags = var.common_tags
}
No requirements.
Name | Version |
---|---|
aws | n/a |
No modules.
Name | Type |
---|---|
aws_codeartifact_domain.examplea | resource |
aws_codeartifact_domain_permissions_policy.examplea | resource |
aws_codeartifact_repository.examplea | resource |
aws_codeartifact_repository_permissions_policy.examplea | resource |
Name | Description | Type | Default | Required |
---|---|---|---|---|
common_tags | This is to help you add tags to your cloud objects | map(any) |
n/a | yes |
domain | n/a | string |
"freebeer" |
no |
kms_key | n/a | any |
n/a | yes |
repository | n/a | string |
"freebeer" |
no |
No outputs.
This is the policy required to build this project:
The Terraform resource required is:
resource "aws_iam_policy" "terraform_pike" {
name_prefix = "terraform_pike"
path = "/"
description = "Pike Autogenerated policy from IAC"
policy = jsonencode({
"Version": "2012-10-17",
"Statement": [
{
"Sid": "VisualEditor0",
"Effect": "Allow",
"Action": [
"codeartifact:CreateDomain",
"codeartifact:CreateRepository",
"codeartifact:DeleteDomain",
"codeartifact:DeleteDomainPermissionsPolicy",
"codeartifact:DeleteRepository",
"codeartifact:DeleteRepositoryPermissionsPolicy",
"codeartifact:DescribeDomain",
"codeartifact:DescribeRepository",
"codeartifact:GetDomainPermissionsPolicy",
"codeartifact:GetRepositoryPermissionsPolicy",
"codeartifact:ListTagsForResource",
"codeartifact:PutDomainPermissionsPolicy",
"codeartifact:PutRepositoryPermissionsPolicy",
"codeartifact:TagResource",
"codeartifact:UntagResource",
"codeartifact:UpdateRepository"
],
"Resource": "*"
}
]
})
}
Check out these related projects.
- terraform-aws-s3 - S3 buckets
Got a question?
File a GitHub issue.
Please use the issue tracker to report any bugs or file feature requests.
Copyright © 2021-2022 James Woolfenden
See LICENSE for full details.
Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
https://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.