-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6 from martijnvdp/update
update
- Loading branch information
Showing
7 changed files
with
87 additions
and
76 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,14 @@ | ||
// all 4 fields are required for the docker images https://github.com/hashicorp/terraform/issues/19898 | ||
module "ecr-image-sync" { | ||
source = "../" | ||
docker_images = [ | ||
{ | ||
image_name = "hashicorp/tfc-agent" // full image name on docker | ||
repo_prefix = "int/ecr" // ecr repo prefix | ||
include_tags = ["latest"] // list of tags to be included | ||
exclude_tags = [] // list of tags to be excluded | ||
}, | ||
{ | ||
image_name = "datadog/agent" | ||
docker_images = { | ||
"hashicorp/tfc-agent" = { // full image name on docker | ||
repo_prefix = "int/ecr" // ecr repo prefix | ||
include_tags = ["latest"] // list of tags to be included | ||
exclude_tags = [] // list of tags to be excluded | ||
} | ||
"datadog/agent" = { | ||
repo_prefix = "int/ecr" | ||
include_tags = [] | ||
exclude_tags = ["latest", "6.27.0-rc.1"] | ||
} | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters