(outputDIR string)
| 301 | } |
| 302 | |
| 303 | func createOutputDirectory(outputDIR string) error { |
| 304 | const readWritePermission = 0755 |
| 305 | |
| 306 | if err := os.MkdirAll(outputDIR, readWritePermission); err != nil && !os.IsExist(err) { |
| 307 | return err |
| 308 | } |
| 309 | |
| 310 | return nil |
| 311 | } |
| 312 | |
| 313 | func createMainFile(input *terraformInputs) error { |
| 314 | filePath := path.Join(input.OutputDIR, "auth0_main.tf") |
no outgoing calls
no test coverage detected