Created
May 9, 2023 23:45
-
-
Save bachand/732176a08accaeae3e143bfe03ce0dbd to your computer and use it in GitHub Desktop.
[Airbnb Tech Blog] Example invocation of Terraform module to create CI environment
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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