Compare commits

...

2 Commits

Author SHA1 Message Date
Ariadne Conill b39b74957d test fix
ci/woodpecker/push/dns Pipeline was successful Details
2022-06-09 04:20:31 +00:00
Ariadne Conill f0108853dd fixes 2022-06-09 04:20:07 +00:00
2 changed files with 2 additions and 2 deletions

View File

@ -26,5 +26,5 @@ pipeline:
- terraform init
- terraform validate
- terraform plan -out deploy.plan -var "token=$LINODE_TOKEN"
- terraform apply deploy.plan -var "token=$LINODE_TOKEN"
- terraform apply deploy.plan
secrets: [linode_token, aws_access_key_id, aws_secret_access_key]

View File

@ -163,5 +163,5 @@ resource "linode_domain_record" "apex_test" {
domain_id = "${linode_domain.treehouse_domain.id}"
name = "test"
record_type = "TXT"
target = "this is a test record"
target = "this is a test record!!!"
}