4b6817381b
CI (OpenClaw E2E) / openclaw test (push) Has been cancelled
CI / coverage-report (push) Has been cancelled
CI / test-kubernetes (push) Has been cancelled
CI / should-run-thorough (push) Has been cancelled
CI / test-thorough (cloudwatch-demo) (push) Has been cancelled
CI / test-thorough (flink-ecs) (push) Has been cancelled
CI / test-thorough (upstream-lambda) (push) Has been cancelled
CI / test-thorough (prefect-ecs-fargate) (push) Has been cancelled
Release / build-binaries (zip, opensre.exe, onefile, windows-latest, windows-x64) (push) Has been cancelled
Benchmark image — build + push to ECR (any adapter) / build + push (push) Has been cancelled
CI / quality (ubuntu-latest) (push) Has been cancelled
CI / test (tools-runtime) (push) Has been cancelled
CI / test (e2e-general) (push) Has been cancelled
CI / test (cli-runtime) (push) Has been cancelled
CI / test (e2e-provider-and-openclaw) (push) Has been cancelled
CI / test (integrations-and-misc) (push) Has been cancelled
Release / verify (push) Has been cancelled
Release / build-python-dist (push) Has been cancelled
Release / build-binaries (tar.gz, opensre, onedir, macos-15-intel, darwin-x64) (push) Has been cancelled
Release / build-binaries (tar.gz, opensre, onedir, macos-latest, darwin-arm64) (push) Has been cancelled
Release / build-binaries (tar.gz, opensre, onedir, ubuntu-22.04, linux-x64) (push) Has been cancelled
Release / publish-release (push) Has been cancelled
Release / publish-main-release (push) Has been cancelled
Interactive Shell Live (PR + post-merge) / turn-checks (no-LLM) (push) Has been cancelled
CodeQL / Analyze (python) (push) Has been cancelled
Interactive Shell Live (PR + post-merge) / turn-live shard ${{ matrix.shard_index }} (push) Has been cancelled
Release / prepare (push) Has been cancelled
Release / build-binaries (tar.gz, opensre, onedir, ubuntu-22.04-arm, linux-arm64) (push) Has been cancelled
Synthetic Deterministic Tests / Synthetic offline (deterministic) (push) Has been cancelled
105 lines
3.0 KiB
Terraform
105 lines
3.0 KiB
Terraform
# Task role — assumed by the bench container at runtime.
|
|
#
|
|
# Grants:
|
|
# - Read the four bench secrets (anthropic, openai, deepseek, hf_token)
|
|
# - Read/write the results S3 bucket
|
|
# - No other AWS access
|
|
#
|
|
# Per-secret ARN grants, not wildcards: any new secret requires an explicit
|
|
# Terraform diff. Same for S3 — bucket-scoped, not account-scoped.
|
|
|
|
data "aws_iam_policy_document" "task_assume_role" {
|
|
statement {
|
|
effect = "Allow"
|
|
actions = ["sts:AssumeRole"]
|
|
|
|
principals {
|
|
type = "Service"
|
|
identifiers = ["ecs-tasks.amazonaws.com"]
|
|
}
|
|
}
|
|
}
|
|
|
|
resource "aws_iam_role" "task" {
|
|
name = "${local.name_prefix}-task"
|
|
description = "Runtime role for the bench container - secrets read + results write."
|
|
assume_role_policy = data.aws_iam_policy_document.task_assume_role.json
|
|
}
|
|
|
|
data "aws_iam_policy_document" "task_secrets_read" {
|
|
statement {
|
|
sid = "ReadBenchLLMSecrets"
|
|
effect = "Allow"
|
|
actions = ["secretsmanager:GetSecretValue"]
|
|
resources = [
|
|
aws_secretsmanager_secret.anthropic_api_key.arn,
|
|
aws_secretsmanager_secret.openai_api_key.arn,
|
|
aws_secretsmanager_secret.deepseek_api_key.arn,
|
|
aws_secretsmanager_secret.hf_token.arn,
|
|
]
|
|
}
|
|
}
|
|
|
|
resource "aws_iam_role_policy" "task_secrets_read" {
|
|
name = "secrets-read"
|
|
role = aws_iam_role.task.id
|
|
policy = data.aws_iam_policy_document.task_secrets_read.json
|
|
}
|
|
|
|
data "aws_iam_policy_document" "task_results_rw" {
|
|
statement {
|
|
sid = "WriteRunArtifacts"
|
|
effect = "Allow"
|
|
actions = [
|
|
"s3:GetObject",
|
|
"s3:PutObject",
|
|
"s3:DeleteObject",
|
|
"s3:AbortMultipartUpload",
|
|
"s3:ListMultipartUploadParts",
|
|
]
|
|
resources = ["${aws_s3_bucket.results.arn}/*"]
|
|
}
|
|
|
|
statement {
|
|
sid = "ListResultsBucket"
|
|
effect = "Allow"
|
|
actions = ["s3:ListBucket", "s3:GetBucketLocation"]
|
|
resources = [aws_s3_bucket.results.arn]
|
|
}
|
|
}
|
|
|
|
resource "aws_iam_role_policy" "task_results_rw" {
|
|
name = "results-rw"
|
|
role = aws_iam_role.task.id
|
|
policy = data.aws_iam_policy_document.task_results_rw.json
|
|
}
|
|
|
|
# Read-only access to the corpus mirror bucket. The entrypoint runs
|
|
# `aws s3 sync` against s3://<corpus_bucket>/<corpus_hf_revision>/ at task
|
|
# startup. Read-only is enough — the corpus is populated out-of-band by
|
|
# `make mirror-cloudopsbench-s3` from a developer machine.
|
|
#
|
|
# Bucket-scoped, not account-scoped, so a future bucket addition would
|
|
# require an explicit Terraform diff.
|
|
data "aws_iam_policy_document" "task_corpus_read" {
|
|
statement {
|
|
sid = "ReadCorpusObjects"
|
|
effect = "Allow"
|
|
actions = ["s3:GetObject"]
|
|
resources = ["arn:aws:s3:::${var.corpus_bucket_name}/*"]
|
|
}
|
|
|
|
statement {
|
|
sid = "ListCorpusBucket"
|
|
effect = "Allow"
|
|
actions = ["s3:ListBucket", "s3:GetBucketLocation"]
|
|
resources = ["arn:aws:s3:::${var.corpus_bucket_name}"]
|
|
}
|
|
}
|
|
|
|
resource "aws_iam_role_policy" "task_corpus_read" {
|
|
name = "corpus-read"
|
|
role = aws_iam_role.task.id
|
|
policy = data.aws_iam_policy_document.task_corpus_read.json
|
|
}
|