Skip to content

Instantly share code, notes, and snippets.

@Gabriella439
Created January 23, 2021 03:47
Show Gist options
  • Save Gabriella439/6f5ef3faba741a0556d13d74b1f729d4 to your computer and use it in GitHub Desktop.
Save Gabriella439/6f5ef3faba741a0556d13d74b1f729d4 to your computer and use it in GitHub Desktop.
Translating Pulumi example to Dhall
let sesDomainIdentity = aws.ses.DomainIdentity "DomainIdentity" { domain }
let verificationTokenRecord =
cloudflare.Record
"verificationTokenRecord"
{ zoneId = cloudflareDnsZoneId
, name = "NAME"
, type = "TXT"
, value = sesDomainIdentity.verificationToken
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment