I hereby claim:
- I am iamtankist on github.
- I am iamtankist (https://keybase.io/iamtankist) on keybase.
- I have a public key whose fingerprint is FA1B 8D92 D31A 646B 6929 D3B2 6AFF 735C 8E23 1F30
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| { | |
| "title": "Performance Zone", | |
| "deliveredBy": "delivered by", | |
| "rank": "Rank", | |
| "fieldPosition": "OVERALL", | |
| "firstPlayer": { | |
| "id": 63706, | |
| "name": "Cristiano Ronaldo", | |
| "rank": "1st", | |
| "playerImage": "http://img.uefa.com/imgml/TP/players/1/2017/324x324/63706.jpg", |
| resource "aws_iam_role" "autoscale_role" { | |
| name = "fargate-autoscale-role" | |
| assume_role_policy = <<EOF | |
| { | |
| "Version": "2012-10-17", | |
| "Statement": [ | |
| { | |
| "Effect": "Allow", | |
| "Principal": { | |
| "Service": "application-autoscaling.amazonaws.com" |
| Vagrant.configure("2") do |config| | |
| config.vm.box = "ubuntu/xenial64" | |
| config.vm.provision :shell, :inline => <<SCRIPT | |
| apt-get update | |
| curl -s -O https://bootstrap.pypa.io/get-pip.py && python3 get-pip.py && rm get-pip.py | |
| pip3 install awscli --upgrade | |
| aws --version | |
| SCRIPT | |
| end |