Skip to content

Commit

Permalink
Removes the classiclink property from the VPC declarations. (#1570)
Browse files Browse the repository at this point in the history
  • Loading branch information
MitchellGerdisch committed Feb 2, 2024
1 parent 267aba1 commit 7a0dbf4
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 5 deletions.
1 change: 0 additions & 1 deletion aws-cs-ansible-wordpress/MyStack.cs
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@ public MyStack()
CidrBlock = "10.192.0.0/16",
EnableDnsSupport = true, // gives you an internal domain name.
EnableDnsHostnames = true, // gives you an internal host name.
EnableClassiclink = false,
InstanceTenancy = "default",
});

Expand Down
1 change: 0 additions & 1 deletion aws-go-ansible-wordpress/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,6 @@ func main() {
CidrBlock: pulumi.String("10.192.0.0/16"),
EnableDnsSupport: pulumi.Bool(true), // gives you an internal domain name.
EnableDnsHostnames: pulumi.Bool(true), // gives you an internal host name.
EnableClassiclink: pulumi.Bool(false),
InstanceTenancy: pulumi.String("default"),
})
if err != nil {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,6 @@ public static void stack(Context ctx) {
.cidrBlock("10.192.0.0/16")
.enableDnsSupport(true)
.enableDnsHostnames(true)
.enableClassiclink(false)
.instanceTenancy("default")
.build());

Expand Down
1 change: 0 additions & 1 deletion aws-py-ansible-wordpress/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@
cidr_block="10.192.0.0/16",
enable_dns_support=True, # gives you an internal domain name
enable_dns_hostnames=True, # gives yoiu an internal host name
enable_classiclink=False,
instance_tenancy="default")

# Create public subnets for the EC2 instance.
Expand Down
1 change: 0 additions & 1 deletion aws-ts-ansible-wordpress/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@ const prodVpc = new aws.ec2.Vpc("prod-vpc", {
cidrBlock: "10.192.0.0/16",
enableDnsSupport: true, // gives you an internal domain name.
enableDnsHostnames: true, // gives you an internal host name.
enableClassiclink: false,
instanceTenancy: "default",
});

Expand Down

0 comments on commit 7a0dbf4

Please sign in to comment.