mirror of
https://github.com/fleetdm/fleet
synced 2026-04-21 21:47:20 +00:00
# Github Actions (New)
- New workflow to deploy/destroy loadtest infrastructure with one-click
(Needs to be tested)
- Common inputs drive configuration and deployment of loadtest
infrastructure
- tag
- fleet_task_count
- fleet_task_memory
- fleet_task_cpu
- fleet_database_instance_size
- fleet_database_instance_count
- fleet_redis_instance_size
- fleet_redis_instance_count
- terraform_workspace
- terraform_action
- New workflow to deploy/destroy osquery-perf to loadtest infrastructure
with one-click (Needs to be tested)
- Common inputs drive configuration and deployment of osquery-perf
resources
- tag
- git_branch
- loadtest_containers
- extra_flags
- terraform_workspace
- terraform_action
- New workflow to deploy shared loadtest resources with one-click (Needs
to be tested)
# Loadtest Infrastructure (New)
- New directory (`infrastructure/loadtesting/terraform/infra`) for
one-click deployment
- Loadtest environment updated to use [fleet-terraform
modules](https://github.com/fleetdm/fleet-terraform)
- [Deployment documentation
updated](0c254bca40/infrastructure/loadtesting/terraform/infra/README.md)
to reflect new steps
# Osquery-perf deployment (New)
- New directory (`infrastructure/loadtesting/terraform/osquery-perf`)
for the deployment of osquery-perf
- osquery-perf updated to use [fleet-terraform
modules](https://github.com/fleetdm/fleet-terraform)
- [Deployment documentation
updated](0c254bca40/infrastructure/loadtesting/terraform/osquery_perf)
to reflect new steps
31 lines
No EOL
577 B
HCL
31 lines
No EOL
577 B
HCL
# MDM
|
|
resource "tls_private_key" "scep_key" {
|
|
algorithm = "RSA"
|
|
rsa_bits = 4096
|
|
}
|
|
|
|
resource "tls_self_signed_cert" "scep_cert" {
|
|
private_key_pem = tls_private_key.scep_key.private_key_pem
|
|
|
|
subject {
|
|
common_name = "Fleet Root CA"
|
|
organization = "Fleet."
|
|
country = "US"
|
|
}
|
|
|
|
is_ca_certificate = true
|
|
validity_period_hours = 87648
|
|
|
|
allowed_uses = [
|
|
"cert_signing",
|
|
"crl_signing",
|
|
"key_encipherment",
|
|
"digital_signature",
|
|
]
|
|
}
|
|
|
|
# Cloudfront
|
|
resource "tls_private_key" "cloudfront_key" {
|
|
algorithm = "RSA"
|
|
rsa_bits = 2048
|
|
} |