Terraform for Corelight's AWS Fleet Deployment.
module "fleet" {
source = "github.com/corelight/terraform-aws-fleet"
vpc_id = "<vpc id>"
public_subnets = ["<public subnet id 1>", "<public subnet id 2>"]
private_subnet = "<private subnet id>"
route53_zone_name = "<your-domain.com>"
subdomain = "fleet"
certificate_arn = "<acm certificate arn>"
aws_key_pair_name = "<key pair name>"
fleet_username = "<fleet admin username>"
fleet_password = "<fleet admin password>"
community_string = "<community string for sensor pairing>"
fleet_certificate_file_path = "<path to fleet certificate file>"
fleet_sensor_license_file_path = "<path to sensor license file>"
# Optional variables
aws_ec2_size = "t3.large"
fleet_version = "28.2.2"
radius_enable = false
radius_address = ""
radius_shared_secret = ""
}
### Deployment
The variables for this module all have default values that can be overwritten
to meet your naming and compliance standards.
## License
The project is licensed under the [MIT][] license.
[MIT]: LICENSE