You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# providers
...
resource "mailgun_domain" "mail" {
name = "example.com"
spam_action = "disabled"
smtp_password = "foobarbaz"
}
resource "digitalocean_record" "mail_receiving_0" {
domain = "example.com"
name = "@"
type = "${mailgun_domain.mail.receiving_records.0.record_type}"
value = "${mailgun_domain.mail.receiving_records.0.value}"
}
The following error is returned on plan:
Error running plan: Resource 'mailgun_domain.mail' does not have attribute 'receiving_records.0.value' for variable 'mailgun_domain.mail.receiving_records.0.value'
The text was updated successfully, but these errors were encountered:
Given the following configuration:
The following error is returned on
plan
:The text was updated successfully, but these errors were encountered: