https://pulumi.com logo
#aws
Title
# aws
b

brave-nightfall-19158

10/30/2021, 3:13 PM
Hey all, I'm trying to set a resource as "deleteBeforeReplace" but pulumi up doesn't seem to generate a diff. Anyone had this before? this.domainName = new aws.apigatewayv2.DomainName(
${_name_}-domain-name
, { domainName: args.customDomainName, domainNameConfiguration: { certificateArn: args.certifcateArn, endpointType: 'REGIONAL', securityPolicy: 'TLS_1_2' } }, { deleteBeforeReplace: true, parent: this });
t

tall-beard-99429

11/01/2021, 2:07 PM
Have you tried running
refresh
?
This change would take place on the pulumi service side, not on the AWS side so it might be sufficient to do a refresh, not 100% certain