Skip to content

Instantly share code, notes, and snippets.

@bachand
Created May 9, 2023 23:45
Show Gist options
  • Save bachand/732176a08accaeae3e143bfe03ce0dbd to your computer and use it in GitHub Desktop.
Save bachand/732176a08accaeae3e143bfe03ce0dbd to your computer and use it in GitHub Desktop.
[Airbnb Tech Blog] Example invocation of Terraform module to create CI environment
module "ios-ci-arm-xcode-14-2" {
source = "../modules/ios-platform"
instance_type = "mac2.metal"
launch_template_version = 23
ami_filter = "ios-ci-xcode_14_2_0-*"
max_num_instances = # redacted
max_num_instances_weekends = # redacted
buildkite_tags = {
queue = "ios-ci-arm-xcode-14-2"
}
# additional configuration excluded for brevity
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment