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
# terraform-config-inspect . --json | jq '.module_calls |map({newname: .name, source: .source})|group_by(.source)|map({"uri": .[0].source, "modules": map(.newname)})' | |
[ | |
{ | |
"uri": "git::https://github.com/cloudposse/terraform-aws-dynamic-subnets.git?ref=master", | |
"modules": [ | |
"dynamic_subnets", | |
"dynamic_subnets2" | |
] | |
}, | |
{ |
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
#!/bin/bash | |
echo ==INSTALLING DEPENDENCIES== | |
######################################## | |
## INSTALL DEPENDENCIES AND CODE-SERVER | |
######################################## | |
yum install -y http://mirror.centos.org/centos/7/os/x86_64/Packages/libsecret-0.18.6-1.el7.x86_64.rpm | |
echo ==INSTALLING CODE-SERVER== | |
yum install -y https://github.com/coder/code-server/releases/download/v4.4.0/code-server-4.4.0-amd64.rpm |