dns_txt_record_set (Resource)

Creates a TXT type DNS record set.

Example Usage

# DO NOT EDIT. Code generated by 'cdktf convert' - Please report bugs at https://cdk.tf/bug
from constructs import Construct
from cdktf import TerraformStack
#
# Provider bindings are generated by running `cdktf get`.
# See https://cdk.tf/provider-generation for more details.
#
from imports.dns.txt_record_set import TxtRecordSet
class MyConvertedCode(TerraformStack):
    def __init__(self, scope, name):
        super().__init__(scope, name)
        TxtRecordSet(self, "google",
            ttl=300,
            txt=["google-site-verification=..."],
            zone="example.com."
        )

Schema

Required

Optional

Read-Only

Import

Import is supported using the following syntax:

# Import using the FQDN.
terraform import dns_txt_record_set.example example.com.