Something went wrong on our end
-
Nuwan Rajika Kumarasiri authored
Since our licensing restrict us from more than 1 instance of Secure Agent, before deploying a new instance existing instance need to be shutdown (after adjusting any resources that depends on that instance). Due to this reason terraform is not part of CI/CD.
Nuwan Rajika Kumarasiri authoredSince our licensing restrict us from more than 1 instance of Secure Agent, before deploying a new instance existing instance need to be shutdown (after adjusting any resources that depends on that instance). Due to this reason terraform is not part of CI/CD.
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
network.tf 314 B
data "aws_vpc" "vpc" {
tags = var.vpc_tags
}
data "aws_subnet_ids" "subnets" {
vpc_id = data.aws_vpc.vpc.id
filter {
name = "tag:Name"
values = [
var.private_subnets_filter["Name"]]
}
}
data "aws_security_group" "sec-group" {
vpc_id = data.aws_vpc.vpc.id
tags = var.security_group
}