-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathversions.tf
More file actions
33 lines (32 loc) · 947 Bytes
/
Copy pathversions.tf
File metadata and controls
33 lines (32 loc) · 947 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
terraform {
# >= 1.9 is REQUIRED: the "installation_id required when manage_webhooks" rule
# uses a cross-variable validation (references another variable), which only
# works on Terraform 1.9+.
required_version = ">= 1.9.0"
required_providers {
aws = {
source = "hashicorp/aws"
version = ">= 6.0, < 7.0"
}
# Only exercised when var.manage_webhooks = true. Callers that wire webhooks
# themselves never configure it.
github = {
source = "integrations/github"
version = ">= 6.2"
}
archive = {
source = "hashicorp/archive"
version = ">= 2.4"
}
random = {
source = "hashicorp/random"
version = ">= 3.6"
}
# Native MicroVM image resource (awscc_lambda_microvm_image) - Cloud Control
# builds it and waits for the async build, replacing the CLI shell-out.
awscc = {
source = "hashicorp/awscc"
version = ">= 1.0"
}
}
}