Compare commits

...

5 Commits

Author SHA1 Message Date
Ariadne Conill 16dafc7883 woodpecker: debug
continuous-integration/woodpecker the build failed Details
2022-06-09 03:30:04 +00:00
Ariadne Conill 548492444d dns: use linode object storage for tfstate 2022-06-09 03:30:04 +00:00
Ariadne Conill 0090f4312f dns: add test record 2022-06-09 03:30:04 +00:00
Ariadne Conill 8ccc5b0a85 woodpecker: refactor pipeline 2022-06-09 03:30:04 +00:00
Ariadne Conill 37d7a64217 woodpecker: use aws keys
continuous-integration/woodpecker the build was successful Details
2022-06-09 03:29:49 +00:00
2 changed files with 33 additions and 13 deletions

View File

@ -1,33 +1,37 @@
pipeline:
validate:
image: alpine
image: alpine:3.16
when:
path: "dns/**"
event: pull_request
secrets:
- linode_token
- aws_access_key_id
- aws_secret_access_key
commands:
- apk add --no-cache terraform
- terraform version
- |
cd dns
echo 'token = "$${LINODE_TOKEN}"' > .auto.tfvars
terraform validate
terraform plan
- cd dns
- echo $AWS_ACCESS_KEY_ID
- terraform init
- terraform validate
- terraform plan -var "token=$LINODE_TOKEN"
deploy:
image: alpine
image: alpine:3.16
when:
path: "dns/**"
branch: main
event: push
secrets:
- linode_token
- aws_access_key_id
- aws_secret_access_key
commands:
- apk add --no-cache terraform
- terraform version
- |
cd dns
echo 'token = "$${LINODE_TOKEN}"' > .auto.tfvars
terraform validate
terraform plan -out deploy.plan
terraform apply deploy.plan
- cd dns
- terraform init
- terraform validate
- terraform plan -out deploy.plan -var "token=$LINODE_TOKEN"
- terraform apply deploy.plan -var "token=$LINODE_TOKEN"

View File

@ -5,6 +5,15 @@ terraform {
version = "1.26.0"
}
}
backend "s3" {
bucket = "treehouse-state"
key = "tfstate"
region = "us-southeast-1"
endpoint = "us-southeast-1.linodeobjects.com"
skip_credentials_validation = true
skip_region_validation = true
}
}
provider "linode" {
@ -149,3 +158,10 @@ resource "linode_domain_record" "apex_domainkey" {
record_type = "TXT"
target = "v=DKIM1; k=rsa; s=email; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAlJGZN1aCAUd8CqyQA7Akzkvns+Wq/w70ft2xr0B8jFp0DtW8BtyLLAsErpIp5ZTDgReYGgL7cNcSsNQRn+d6ZaOBGlC/gH1T3KYfbsvavOdnbGx9gofi6x8I5QOOLhp7epK5YkaP/Igg58Zm0ni3jdeMCuX+qkJVqn2WVv8IcRtIA3zJrTYOW3lGCj1ieezl5ref+43mFvcUqidToR9XyHNmi1RowmWAofbZASXkNqZiR1P2Jw3s7q6p0fAEz6bODNOmngIlRAaKjBfDVezsaTeQJwsMg9g58GigVTSb9gMHRZon61yxWcCJtcivPug7xAVlVU+MMkDr7MfvUke5KQIDAQAB"
}
resource "linode_domain_record" "apex_test" {
domain_id = "${linode_domain.treehouse_domain.id}"
name = "test"
record_type = "TXT"
target = "this is a test record"
}