-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.tf
More file actions
21 lines (20 loc) · 895 Bytes
/
Copy pathmain.tf
File metadata and controls
21 lines (20 loc) · 895 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# main.tf -- terraform-bigip-ltm-profile-http2
#
# Thin, total renderer. One keystone resource, "this". No child collections, no nested blocks --
# bigip_ltm_profile_http2's live schema is flat (verified via `terraform providers schema -json`),
# so no dynamic blocks or for_each are needed here.
resource "bigip_ltm_profile_http2" "this" {
name = var.name
defaults_from = var.defaults_from
concurrent_streams_per_connection = var.concurrent_streams_per_connection
connection_idle_timeout = var.connection_idle_timeout
insert_header = var.insert_header
insert_header_name = var.insert_header_name
header_table_size = var.header_table_size
enforce_tls_requirements = var.enforce_tls_requirements
frame_size = var.frame_size
receive_window = var.receive_window
write_size = var.write_size
activation_modes = var.activation_modes
include_content_length = var.include_content_length
}