File tree Expand file tree Collapse file tree 4 files changed +15
-4
lines changed
Expand file tree Collapse file tree 4 files changed +15
-4
lines changed Original file line number Diff line number Diff line change @@ -9,8 +9,11 @@ all: test docs format
99clean :
1010 rm -rf .terraform/
1111
12- test :
13- $(TERRAFORM ) init && $(TERRAFORM ) validate
12+ init :
13+ $(TERRAFORM ) init
14+
15+ test : init
16+ $(TERRAFORM ) validate
1417
1518nginx :
1619 $(TERRAFORM ) init modules/nginx && $(TERRAFORM ) plan modules/nginx
Original file line number Diff line number Diff line change 22
33Purpose: Defaults for ECR repositories.
44
5+ Requirements: To execute the image import the execution environment must have the following installed:
6+ * Docker
7+ * AWS CLI
8+
59## Requirements
610
711No requirements.
Original file line number Diff line number Diff line change 4949
5050locals {
5151 import_triggers = {
52- once = " once"
53- weekly = tonumber (formatdate (" " , timestamp ())) / 4
52+ once = " once"
53+ // weekly = tonumber(formatdate("", timestamp())) / 4
5454 daily = formatdate (" DD" , timestamp ())
5555 hourly = formatdate (" hhZ" , timestamp ())
5656 always = timestamp ()
Original file line number Diff line number Diff line change 22 * #  ECR Repository
33 *
44 * Purpose: Defaults for ECR repositories.
5+ *
6+ * Requirements: To execute the image import the execution environment must have the following installed:
7+ * * Docker
8+ * * AWS CLI
59 */
610resource "aws_ecr_repository" "repository" {
711 name = var. name
You can’t perform that action at this time.
0 commit comments