31 lines
714 B
HCL
31 lines
714 B
HCL
# ---------------------------------------------------------------------------
|
|
# Main resources
|
|
# ---------------------------------------------------------------------------
|
|
|
|
data "aws_region" "current" {
|
|
provider = aws.aws
|
|
}
|
|
|
|
data "aws_caller_identity" "current" {
|
|
provider = aws.aws
|
|
}
|
|
|
|
data "template_file" "userdata" {
|
|
template = file("${path.module}/html/index.html")
|
|
vars = {
|
|
ENDPOINT = "${module.apigw.api_endpoint}"
|
|
}
|
|
}
|
|
|
|
data "aws_iam_policy_document" "this" {
|
|
statement {
|
|
effect = "Allow"
|
|
actions = ["dynamodb:PutItem"]
|
|
principals {
|
|
type = "AWS"
|
|
identifiers = ["*"]
|
|
}
|
|
resources = ["arn:aws:dynamodb:us-east-1:478157316333:table/AWSDynamoDB-g3"]
|
|
}
|
|
}
|