File tree Expand file tree Collapse file tree 3 files changed +37
-0
lines changed Expand file tree Collapse file tree 3 files changed +37
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : Deploy
2
+
3
+ on :
4
+ workflow_dispatch :
5
+ push :
6
+ branches :
7
+ - main
8
+
9
+ concurrency :
10
+ group : deploy
11
+
12
+ jobs :
13
+ deploy :
14
+ runs-on : ubuntu-latest
15
+ steps :
16
+ - uses : connery-io/deploy-plugin-on-aws-lambda/build-and-deploy@v0.2.0
17
+ with :
18
+ aws-access-key-id : ${{ secrets.AWS_ACCESS_KEY_ID }}
19
+ aws-secret-access-key : ${{ secrets.AWS_SECRET_ACCESS_KEY }}
20
+ aws-region : eu-central-1
21
+ backend-config : backend_v1.hcl
Original file line number Diff line number Diff line change
1
+ bucket = " connery-terraform-remote-state-np"
2
+ key = " perplexity/v1/terraform.tfstate"
3
+ region = " eu-central-1"
4
+ encrypt = true
5
+ dynamodb_table = " connery-terraform-statelock"
Original file line number Diff line number Diff line change
1
+ terraform {
2
+ backend "s3" {}
3
+ }
4
+
5
+
6
+ module "deploy-plugin-on-aws-lambda" {
7
+ source = " github.com/connery-io/deploy-plugin-on-aws-lambda?ref=v0.2.0"
8
+
9
+ plugin_name = " perplexity"
10
+ plugin_version = " v1"
11
+ }
You can’t perform that action at this time.
0 commit comments