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

victorious-dusk-75271

08/10/2022, 7:36 AM
Copy code
new aws.ec2.VpcPeeringConnectionAccepter(`${this.name}-peer-to-${peerName}-accepter`, {
            vpcPeeringConnectionId: peering.id,
            autoAccept: true,
            tags: { ...this.baseTags, Name: `${this.name} VPC connection accepter`, Side: 'Accepter' }
        }, { provider: args.peerVpc.opts.provider, parent: this })
2 Views