mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 02:25:18 +03:00
ea56add719
* new file: projects/checkov.io/package.yml new file: projects/checkov.io/test.tf * modified: projects/checkov.io/package.yml modified: projects/checkov.io/test.tf * . * modified: projects/checkov.io/package.yml modified: projects/checkov.io/test.tf * let's try hardcoded version * -Wno-int-conversion * try github query again * use /tags? error makes no sense: ``` error: Uncaught (in promise) Error: http: https://api.github.com/repos/bridgecrewio/checkov/releases?per_page=100&page=1 if (!rsp.ok) throw new Error(`http: ${url}`) ^ at GET2 (file:///opt/pkgx.sh/brewkit/v0/lib/useGitHubAPI.ts:35:22) at eventLoopTick (ext:core/01_core.js:178:11) at async getVersionsLong (file:///opt/pkgx.sh/brewkit/v0/lib/useGitHubAPI.ts:57:27) at async Object.getVersions (file:///opt/pkgx.sh/brewkit/v0/lib/useGitHubAPI.ts:42:34) at async handleAPIResponse (file:///opt/pkgx.sh/brewkit/v0/lib/usePantry.getVersions.ts:176:50) at async _parse (file:///opt/pkgx.sh/brewkit/v0/lib/usePantry.getVersions.ts:34:19) at async Object.resolve (file:///opt/pkgx.sh/brewkit/v0/lib/usePantry.ts:39:20) at async file:///opt/pkgx.sh/brewkit/v0/libexec/resolve.ts:15:15 ``` * it's like GITHUB_TOKEN has failed... * let's cheat a little * parse version from pypi.org --------- Co-authored-by: Jacob Heider <jacob@pkgx.dev>
31 lines
618 B
HCL
31 lines
618 B
HCL
provider "aws" {
|
|
region = "eu-west-1"
|
|
}
|
|
|
|
provider "aws" {
|
|
alias = "central"
|
|
region = "eu-central-1"
|
|
}
|
|
|
|
data "aws_iam_policy_document" "foo_policy" {
|
|
statement {
|
|
effect = "Allow"
|
|
principals = {
|
|
type = "Service"
|
|
identifiers = ["ec2.amazonaws.com"]
|
|
}
|
|
actions = [
|
|
"s3:*"
|
|
]
|
|
resources = [
|
|
"${aws_s3_bucket.foo.arn}"
|
|
]
|
|
}
|
|
}
|
|
|
|
resource "aws_s3_bucket_policy" "bar" {
|
|
provider = "aws.central"
|
|
bucket = "${aws_s3_bucket.foo.bucket}"
|
|
policy = "${data.aws_iam_policy_document.foo_policy.json}"
|
|
}
|