Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Create graphql data source #28

Merged
merged 1 commit into from
Aug 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,4 @@ override.tf.json
terraform.rc
.validate
.apply
.plan
plan.tfplan
13 changes: 9 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -35,17 +35,22 @@ terraform/environment/aws-dev/.apply: terraform/environment/aws-dev/*.tf terrafo
./terraform/environment/aws-dev/deploy.sh $(ACCOUNT_ID) dev
touch $@

terraform/environment/wildsea-dev/.plan: terraform/environment/wildsea-dev/*.tf terraform/module/wildsea/*.tf terraform/environment/wildsea-dev/.terraform
terraform/environment/wildsea-dev/plan.tfplan: terraform/environment/wildsea-dev/*.tf terraform/module/wildsea/*.tf terraform/environment/wildsea-dev/.terraform
cd terraform/environment/wildsea-dev ; ../../../scripts/run-as.sh $(RO_ROLE) \
terraform plan -out=./plan
terraform plan -out=./plan.tfplan

terraform/environment/wildsea-dev/.apply: terraform/environment/wildsea-dev/.plan
terraform/environment/wildsea-dev/.apply: terraform/environment/wildsea-dev/plan.tfplan
cd terraform/environment/wildsea-dev ; ../../../scripts/run-as.sh $(RW_ROLE) \
terraform apply ./plan
terraform apply ./plan.tfplan
touch $@

terraform/environment/wildsea-dev/.terraform: terraform/environment/wildsea-dev/*.tf terraform/module/wildsea/*.tf
cd terraform/environment/wildsea-dev ; terraform init \
-backend-config=bucket=terraform-state-$(ACCOUNT_ID) \
-backend-config=key=dev/terraform.tfstate \
-backend-config=region=$(AWS_REGION)

.PHONY: clean
clean:
rm -f terraform/environment/*/.validate
rm -f terraform/environment/*/plan.tfplan
Binary file modified terraform/environment/wildsea-dev/plan
Binary file not shown.
6 changes: 6 additions & 0 deletions terraform/module/iac-roles/policy.tf
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,7 @@ data "aws_iam_policy_document" "ro" {
statement {
actions = [
"appsync:GetSchemaCreationStatus",
"appsync:GetDataSource",
]
resources = [
"arn:${data.aws_partition.current.id}:appsync:${data.aws_region.current.id}:${data.aws_caller_identity.current.account_id}:*"
Expand Down Expand Up @@ -233,6 +234,8 @@ data "aws_iam_policy_document" "rw" {
statement {
actions = [
"appsync:StartSchemaCreation",
"appsync:CreateDataSource",
"appsync:DeleteDataSource",
]
resources = [
"arn:${data.aws_partition.current.id}:appsync:${data.aws_region.current.id}:${data.aws_caller_identity.current.account_id}:*"
Expand Down Expand Up @@ -457,6 +460,9 @@ data "aws_iam_policy_document" "rw_boundary" {
actions = [
"appsync:StartSchemaCreation",
"appsync:GetSchemaCreationStatus",
"appsync:CreateDataSource",
"appsync:DeleteDataSource",
"appsync:GetDataSource",
]
resources = [
"arn:${data.aws_partition.current.id}:appsync:${data.aws_region.current.id}:${data.aws_caller_identity.current.account_id}:*"
Expand Down
59 changes: 59 additions & 0 deletions terraform/module/wildsea/graphql.tf
Original file line number Diff line number Diff line change
Expand Up @@ -167,3 +167,62 @@ resource "aws_wafv2_web_acl" "graphql" {
Name = var.prefix
}
}

resource "aws_appsync_datasource" "graphql" {
api_id = aws_appsync_graphql_api.graphql.id
name = replace(var.prefix, "-", "_")
type = "AMAZON_DYNAMODB"
service_role_arn = aws_iam_role.graphql_datasource.arn
description = "DynamoDB Resolver"

dynamodb_config {
table_name = aws_dynamodb_table.table.name
region = data.aws_region.current.name
}
}

resource "aws_iam_role" "graphql_datasource" {
name = "${var.prefix}-graphql-datasource"
assume_role_policy = data.aws_iam_policy_document.graphql_datasource_assume.json

tags = {
Name = var.prefix
}
}

data "aws_iam_policy_document" "graphql_datasource_assume" {
statement {
actions = ["sts:AssumeRole"]
principals {
type = "Service"
identifiers = ["appsync.${data.aws_partition.current.dns_suffix}"]
}
}
}

resource "aws_iam_policy" "graphql_datasource" {
name = "${var.prefix}-graphql-datasource"
policy = data.aws_iam_policy_document.graphql_datasource.json

tags = {
Name = var.prefix
}
}

data "aws_iam_policy_document" "graphql_datasource" {
statement {
actions = [
"dynamodb:BatchGetItem",
"dynamodb:GetItem",
"dynamodb:PutItem",
"dynamodb:UpdateutItem",
"dynamodb:Query",
]
resources = [aws_dynamodb_table.table.arn]
}
}

resource "aws_iam_role_policy_attachment" "graphql_datasource" {
role = aws_iam_role.graphql_datasource.name
policy_arn = aws_iam_policy.graphql_datasource.arn
}