deployInfrastructure deploys AWS infrastructure using CLI
()
| 67 | |
| 68 | // deployInfrastructure deploys AWS infrastructure using CLI |
| 69 | func deployInfrastructure() error { |
| 70 | cmd := exec.Command("./build/lambda-nat-proxy", "deploy") |
| 71 | cmd.Dir = "../.." |
| 72 | return cmd.Run() |
| 73 | } |
| 74 | |
| 75 | // startLambdaProxy starts the lambda-nat-proxy process |
| 76 | func startLambdaProxy(ctx context.Context) (*exec.Cmd, error) { |
no outgoing calls
no test coverage detected