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
/opt/resource # PACKER_LOG=1 packer validate -machine-readable -var=aws_region=us-east-1 test/data/template.json | |
2018/11/20 01:38:16 [INFO] Packer version: 1.3.1 | |
2018/11/20 01:38:16 Packer Target OS/Arch: linux amd64 | |
2018/11/20 01:38:16 Built with Go Version: go1.11 | |
2018/11/20 01:38:16 Detected home directory from env var: /root | |
2018/11/20 01:38:16 Using internal plugin for oracle-classic | |
2018/11/20 01:38:16 Using internal plugin for amazon-chroot | |
2018/11/20 01:38:16 Using internal plugin for ncloud | |
2018/11/20 01:38:16 Using internal plugin for null | |
2018/11/20 01:38:16 Using internal plugin for profitbricks |
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
--- | |
resource_types: | |
- name: slack-notification | |
type: docker-image | |
source: | |
repository: cfcommunity/slack-notification-resource | |
tag: latest | |
resources: | |
- name: git-develop |
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
- task: build | |
image: concourse-docker-compose | |
privileged: true | |
input_mapping: | |
images: app-build | |
config: | |
platform: linux | |
inputs: | |
- name: source | |
- name: ecr-credentials |
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
#!/usr/bin/env python | |
# -What------------------------------------------------------------------------- | |
# This script creates a request to the AWS Security Token Service API | |
# with the action "GetCallerIdentity" and then signs the request using the | |
# AWS credentials. It was modified from the python 2.x example published by | |
# J. Thompson, the author of the Vault IAM auth method, at the vault support | |
# mailing list. https://groups.google.com/forum/#!topic/vault-tool/Mfi3O-lW60I | |
# -Why-------------------------------------------------------------------------- | |
# We are using python here instead of bash to take advantage of the boto3 library | |
# which facilitates this work by an order of magnitude |
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
--- | |
platform: linux | |
image_resource: | |
type: docker-image | |
source: | |
repository: snapkitchen/concourse-docker-compose | |
tag: 18.06 | |
params: |
OlderNewer