We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3fcee1b commit 41de09eCopy full SHA for 41de09e
1 file changed
terraform/core-infra/aws/context.tf
@@ -15,4 +15,14 @@ resource "plural_service_context" "mgmt" {
15
subnet_ids = one(data.aws_eks_cluster.mgmt.vpc_config).subnet_ids
16
vpc_cidr = data.aws_vpc.mgmt.cidr_block
17
})
18
+}
19
+
20
+resource "plural_service_context" "plrl-vpc" {
21
+ name = "plrl/vpc/plural"
22
23
+ configuration = jsonencode({
24
+ vpc_id = one(data.aws_eks_cluster.mgmt.vpc_config).vpc_id
25
+ subnet_ids = one(data.aws_eks_cluster.mgmt.vpc_config).subnet_ids
26
+ vpc_cidr = data.aws_vpc.mgmt.cidr_block
27
+ })
28
}
0 commit comments