-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.tf
More file actions
26 lines (23 loc) · 935 Bytes
/
main.tf
File metadata and controls
26 lines (23 loc) · 935 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
terraform {
required_version = ">= 0.12.4"
backend "s3" {}
}
provider "aws" {
region = var.region
}
module "codebuild_tf_lambda_deploy" {
source = "git::https://github.com/AirWalk-Digital/terraform-aws-codebuild-deploy-tf.git"
region = var.region
name = var.name
namespace = var.namespace
stage = var.stage
tags = var.tags
codebuild_project_description = var.codebuild_project_description
github_owner = var.github_owner
github_repo = var.github_repo
git_branch = var.git_branch
codebuild_iam_policy_arns = var.codebuild_iam_policy_arns
codepipeline_iam_policy_arns = var.codepipeline_iam_policy_arns
codebuild_env_vars = var.codebuild_env_vars
ssm_param_name_github_token = var.ssm_param_name_github_token
}