Skip to content

Commit

Permalink
Release 0.8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
cloudshiftchris committed Mar 18, 2024
1 parent 2f43ac5 commit bac659e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
1 change: 1 addition & 0 deletions api/kotlin-cdk-extensions.api
Original file line number Diff line number Diff line change
Expand Up @@ -205,6 +205,7 @@ public final class io/cloudshiftdev/awscdklib/network/securevpc/RouteDestination

public final class io/cloudshiftdev/awscdklib/network/securevpc/SecureVpc : io/cloudshiftdev/constructs/Construct {
public fun <init> (Lio/cloudshiftdev/constructs/Construct;Ljava/lang/String;Lkotlin/jvm/functions/Function1;)V
public final fun getVpc ()Lio/cloudshiftdev/awscdk/services/ec2/Vpc;
}

public final class io/cloudshiftdev/awscdklib/network/securevpc/SecureVpcBuilder {
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version=0.8.0
version=0.8.1
group=io.cloudshiftdev.kotlin-cdk-extensions

org.gradle.vfs.watch=true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,12 @@ import io.cloudshiftdev.constructs.Construct

public class SecureVpc(scope: Construct, id: String, block: (SecureVpcBuilder).() -> Unit) :
Construct(scope, id) {

public val vpc: Vpc

init {
val networkDef = buildNetworkDefinition(block)
val vpc = createVpc(networkDef)
vpc = createVpc(networkDef)

NetworkAclGenerator.generate(
vpc,
Expand Down

0 comments on commit bac659e

Please sign in to comment.