Skip to content

Commit

Permalink
refactor(pulumi-gcp): Update resource type identifier in DNSResource … (
Browse files Browse the repository at this point in the history
#305)

…constructor
  • Loading branch information
TriPSs committed Aug 26, 2024
2 parents 91241ee + 2aa16cd commit ef7f66a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/pulumi/gcp/resources/dns.resource.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export class DNSResource extends pulumi.ComponentResource {
private readonly opts: pulumi.ComponentResourceOptions = {},
private readonly zoneOpts: pulumi.ComponentResourceOptions = {}
) {
super('straetus:dns-resource', DNSResource.makeDomainFriendly(domain), {}, opts)
super('dns-resource', DNSResource.makeDomainFriendly(domain), {}, opts)

this.friendlyDomain = DNSResource.makeDomainFriendly(domain)
this.zone = new gcp.dns.ManagedZone(this.friendlyDomain, {
Expand Down

0 comments on commit ef7f66a

Please sign in to comment.