mirror of
https://github.com/dragonheim/gagent.git
synced 2025-01-18 09:36:28 -08:00
fix: updating Go & Alpine versions
This commit is contained in:
parent
0b3e575331
commit
7924ed5962
5 changed files with 12 additions and 7 deletions
|
@ -83,4 +83,5 @@ override.tf.json
|
||||||
.terraformrc
|
.terraformrc
|
||||||
terraform.rc
|
terraform.rc
|
||||||
|
|
||||||
|
# Ignore InSync temporary files
|
||||||
|
*.insyncdl
|
||||||
|
|
4
.gitignore
vendored
4
.gitignore
vendored
|
@ -76,7 +76,11 @@ override.tf.json
|
||||||
|
|
||||||
# Include tfplan files to ignore the plan output of command: terraform plan -out=tfplan
|
# Include tfplan files to ignore the plan output of command: terraform plan -out=tfplan
|
||||||
# example: *tfplan*
|
# example: *tfplan*
|
||||||
|
*tfplan*
|
||||||
|
|
||||||
# Ignore CLI configuration files
|
# Ignore CLI configuration files
|
||||||
.terraformrc
|
.terraformrc
|
||||||
terraform.rc
|
terraform.rc
|
||||||
|
|
||||||
|
# Ignore InSync temporary files
|
||||||
|
*.insyncdl
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
FROM golang:1.16-alpine3.12 as builder
|
FROM golang:1.16-alpine3.13 as builder
|
||||||
|
|
||||||
WORKDIR /gagent
|
WORKDIR /gagent
|
||||||
COPY . .
|
COPY . .
|
||||||
|
@ -12,7 +12,7 @@ RUN go build -o /gagent/bin/gagent gagent/main.go
|
||||||
RUN strip /gagent/bin/gagent
|
RUN strip /gagent/bin/gagent
|
||||||
|
|
||||||
|
|
||||||
FROM alpine:3.12
|
FROM alpine:3.13
|
||||||
LABEL Name="G'Agent"
|
LABEL Name="G'Agent"
|
||||||
LABEL Maintainer="jwells@dragonheim.net"
|
LABEL Maintainer="jwells@dragonheim.net"
|
||||||
LABEL License="MIT License"
|
LABEL License="MIT License"
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
module "us-east-1" {
|
module "us-east-1" {
|
||||||
source = "./cluster"
|
source = "./cluster"
|
||||||
region = "us-east-1"
|
region = "us-east-1"
|
||||||
provider_alias = us-west-2
|
provider_alias = "us-east-1"
|
||||||
providers = {
|
providers = {
|
||||||
aws = "aws.us-east-1"
|
aws = "aws.us-east-1"
|
||||||
}
|
}
|
||||||
|
@ -11,7 +11,7 @@ module "us-east-1" {
|
||||||
module "us-west-2" {
|
module "us-west-2" {
|
||||||
source = "./cluster"
|
source = "./cluster"
|
||||||
region = "us-west-2"
|
region = "us-west-2"
|
||||||
provider_alias = us-west-2
|
provider_alias = "us-west-2"
|
||||||
providers = {
|
providers = {
|
||||||
aws = "aws.us-west-2"
|
aws = "aws.us-west-2"
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
terraform {
|
terraform {
|
||||||
required_version = ">= 0.15.3"
|
required_version = ">= 1.0.0"
|
||||||
required_providers {
|
required_providers {
|
||||||
aws = {
|
aws = {
|
||||||
source = "hashicorp/aws"
|
source = "hashicorp/aws"
|
||||||
version = "~> 3.42.0"
|
version = "~> 3.46.0"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue