Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Auto updated assets for terraform eng #601

Open
wants to merge 26 commits into
base: eng
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
0b18826
Updated assets for terraform
sagarpsalvi Jul 18, 2024
133561f
Updated assets for terraform
sagarpsalvi Jul 23, 2024
e4c2297
Updated assets for terraform
sagarpsalvi Jul 25, 2024
bfa2e88
Updated assets for terraform
sagarpsalvi Jul 30, 2024
824d97f
Updated assets for terraform
sagarpsalvi Jul 31, 2024
2847d1c
Updated assets for terraform
sagarpsalvi Aug 1, 2024
7d5b584
Updated assets for terraform
sagarpsalvi Aug 9, 2024
74775c9
Updated assets for terraform
sagarpsalvi Aug 12, 2024
a2cf99d
Updated assets for terraform
sagarpsalvi Aug 15, 2024
316f8e6
Updated assets for terraform
sagarpsalvi Aug 19, 2024
7a04150
Updated assets for terraform
sagarpsalvi Aug 20, 2024
19d5909
Updated assets for terraform
sagarpsalvi Aug 22, 2024
0979023
Updated assets for terraform
sagarpsalvi Aug 26, 2024
96100fc
Updated assets for terraform
sagarpsalvi Sep 2, 2024
13496a7
Updated assets for terraform
sagarpsalvi Sep 3, 2024
ce7c226
Updated assets for terraform
sagarpsalvi Sep 4, 2024
fa0f0d0
Updated assets for terraform
sagarpsalvi Sep 5, 2024
97c2959
Updated assets for terraform
sagarpsalvi Sep 9, 2024
7879550
Updated assets for terraform
sagarpsalvi Sep 11, 2024
78eadaf
Updated assets for terraform
sagarpsalvi Sep 12, 2024
6883c11
Updated assets for terraform
sagarpsalvi Sep 13, 2024
808bdf7
Updated assets for terraform
sagarpsalvi Sep 16, 2024
a8f2870
Updated assets for terraform
sagarpsalvi Sep 25, 2024
0b76bdb
Updated assets for terraform
sagarpsalvi Oct 2, 2024
4730831
Updated assets for terraform
sagarpsalvi Oct 7, 2024
d8ea9c9
Updated assets for terraform
sagarpsalvi Oct 8, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions avi/data_source_avi_applicationprofile_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,13 @@ resource "avi_applicationprofile" "testApplicationProfile" {
mime_types_group_refs = [data.avi_stringgroup.system_cacheablestringgroup.id]
}
http2_profile {
http2_initial_window_size = "64"
max_http2_concurrent_streams_per_connection = "128"
max_http2_control_frames_per_connection = "1000"
max_http2_empty_data_frames_per_connection = "1000"
max_http2_header_field_size = "4096"
max_http2_queued_frames_to_client_per_connection = "1000"
max_http2_requests_per_connection = "1000"
}
max_rps_unknown_uri = "0"
post_accept_timeout = "30000"
Expand All @@ -108,6 +115,9 @@ resource "avi_applicationprofile" "testApplicationProfile" {
use_app_keepalive_timeout = false
}
preserve_client_port = false
l4_ssl_profile {
ssl_stream_idle_timeout = "3600"
}
}

data "avi_applicationprofile" "testApplicationProfile" {
Expand Down
5 changes: 5 additions & 0 deletions avi/datasource_avi_applicationpersistenceprofile.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,11 @@ func dataSourceAviApplicationPersistenceProfile() *schema.Resource {
Type: schema.TypeString,
Computed: true,
},
"diameter_app_persistence_profile": {
Type: schema.TypeSet,
Computed: true,
Elem: ResourceDiameterAVPPersistenceProfileSchema(),
},
"hdr_persistence_profile": {
Type: schema.TypeSet,
Computed: true,
Expand Down
5 changes: 5 additions & 0 deletions avi/datasource_avi_applicationprofile.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,11 @@ func dataSourceAviApplicationProfile() *schema.Resource {
Type: schema.TypeString,
Computed: true,
},
"diameter_service_profile": {
Type: schema.TypeSet,
Computed: true,
Elem: ResourceDiameterServiceApplicationProfileSchema(),
},
"dns_service_profile": {
Type: schema.TypeSet,
Computed: true,
Expand Down
15 changes: 10 additions & 5 deletions avi/datasource_avi_availabilityzone.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,16 @@ func dataSourceAviAvailabilityZone() *schema.Resource {
return &schema.Resource{
Read: ResourceAviAvailabilityZoneRead,
Schema: map[string]*schema.Schema{
"az_clusters": {
Type: schema.TypeList,
Computed: true,
Elem: ResourceAZClusterSchema(),
},
"az_datastore": {
Type: schema.TypeSet,
Computed: true,
Elem: ResourceAZDatastoreSchema(),
},
"cloud_ref": {
Type: schema.TypeString,
Optional: true,
Expand All @@ -34,11 +44,6 @@ func dataSourceAviAvailabilityZone() *schema.Resource {
Optional: true,
Computed: true,
},
"vcenter_refs": {
Type: schema.TypeList,
Computed: true,
Elem: &schema.Schema{Type: schema.TypeString},
},
},
}
}
5 changes: 0 additions & 5 deletions avi/datasource_avi_cloud.go
Original file line number Diff line number Diff line change
Expand Up @@ -146,11 +146,6 @@ func dataSourceAviCloud() *schema.Resource {
Type: schema.TypeString,
Computed: true,
},
"openstack_configuration": {
Type: schema.TypeSet,
Computed: true,
Elem: ResourceOpenStackConfigurationSchema(),
},
"prefer_static_routes": {
Type: schema.TypeString,
Computed: true,
Expand Down
13 changes: 13 additions & 0 deletions avi/datasource_avi_controllerproperties.go
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,10 @@ func dataSourceAviControllerProperties() *schema.Resource {
Type: schema.TypeString,
Computed: true,
},
"enable_nsx_streaming_agent": {
Type: schema.TypeString,
Computed: true,
},
"enable_per_process_stop": {
Type: schema.TypeString,
Computed: true,
Expand Down Expand Up @@ -339,6 +343,10 @@ func dataSourceAviControllerProperties() *schema.Resource {
Type: schema.TypeString,
Computed: true,
},
"skip_beego_perf_collection": {
Type: schema.TypeString,
Computed: true,
},
"soft_min_mem_per_se_limit": {
Type: schema.TypeString,
Computed: true,
Expand All @@ -348,6 +356,11 @@ func dataSourceAviControllerProperties() *schema.Resource {
Computed: true,
Elem: &schema.Schema{Type: schema.TypeInt},
},
"statecache_properties": {
Type: schema.TypeSet,
Computed: true,
Elem: ResourceSCPropertiesSchema(),
},
"system_report_cleanup_interval": {
Type: schema.TypeString,
Computed: true,
Expand Down
4 changes: 4 additions & 0 deletions avi/datasource_avi_gslb.go
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,10 @@ func dataSourceAviGslb() *schema.Resource {
Type: schema.TypeString,
Computed: true,
},
"gs_member_fqdn_resolution_on_se": {
Type: schema.TypeString,
Computed: true,
},
"is_federated": {
Type: schema.TypeString,
Computed: true,
Expand Down
12 changes: 12 additions & 0 deletions avi/datasource_avi_gslbservice.go
Original file line number Diff line number Diff line change
Expand Up @@ -92,10 +92,18 @@ func dataSourceAviGslbService() *schema.Resource {
Type: schema.TypeString,
Computed: true,
},
"record_type": {
Type: schema.TypeString,
Computed: true,
},
"resolve_cname": {
Type: schema.TypeString,
Computed: true,
},
"resolve_srv": {
Type: schema.TypeString,
Computed: true,
},
"site_persistence_enabled": {
Type: schema.TypeString,
Computed: true,
Expand All @@ -122,6 +130,10 @@ func dataSourceAviGslbService() *schema.Resource {
Optional: true,
Computed: true,
},
"vrf_uuid_for_gs": {
Type: schema.TypeString,
Computed: true,
},
"wildcard_match": {
Type: schema.TypeString,
Computed: true,
Expand Down
10 changes: 10 additions & 0 deletions avi/datasource_avi_healthmonitor.go
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,16 @@ func dataSourceAviHealthMonitor() *schema.Resource {
Computed: true,
Elem: ResourceHealthMonitorFtpSchema(),
},
"http2_monitor": {
Type: schema.TypeSet,
Computed: true,
Elem: ResourceHealthMonitorHttpSchema(),
},
"http2s_monitor": {
Type: schema.TypeSet,
Computed: true,
Elem: ResourceHealthMonitorHttpSchema(),
},
"http_monitor": {
Type: schema.TypeSet,
Computed: true,
Expand Down
10 changes: 10 additions & 0 deletions avi/datasource_avi_ipreputationdb.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,11 @@ func dataSourceAviIPReputationDB() *schema.Resource {
Computed: true,
Elem: &schema.Schema{Type: schema.TypeString},
},
"base_file_v6_refs": {
Type: schema.TypeList,
Computed: true,
Elem: &schema.Schema{Type: schema.TypeString},
},
"configpb_attributes": {
Type: schema.TypeSet,
Computed: true,
Expand All @@ -28,6 +33,11 @@ func dataSourceAviIPReputationDB() *schema.Resource {
Computed: true,
Elem: &schema.Schema{Type: schema.TypeString},
},
"incremental_file_v6_refs": {
Type: schema.TypeList,
Computed: true,
Elem: &schema.Schema{Type: schema.TypeString},
},
"markers": {
Type: schema.TypeList,
Computed: true,
Expand Down
10 changes: 10 additions & 0 deletions avi/datasource_avi_pool_server.go
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,11 @@ func dataSourceAviServer() *schema.Resource {
Type: schema.TypeString,
Computed: true,
},
"health_monitor_refs": {
Type: schema.TypeList,
Computed: true,
Elem: &schema.Schema{Type: schema.TypeString},
},
"hostname": {
Type: schema.TypeString,
Computed: true,
Expand Down Expand Up @@ -95,6 +100,11 @@ func dataSourceAviServer() *schema.Resource {
Type: schema.TypeString,
Computed: true,
},
"srv_rdata": {
Type: schema.TypeSet,
Computed: true,
Elem: ResourceGslbServiceSrvRdataSchema(),
},
"static": {
Type: schema.TypeString,
Computed: true,
Expand Down
12 changes: 12 additions & 0 deletions avi/datasource_avi_serviceenginegroup.go
Original file line number Diff line number Diff line change
Expand Up @@ -273,6 +273,10 @@ func dataSourceAviServiceEngineGroup() *schema.Resource {
Type: schema.TypeString,
Computed: true,
},
"enable_qat": {
Type: schema.TypeString,
Computed: true,
},
"ephemeral_portrange_end": {
Type: schema.TypeString,
Computed: true,
Expand Down Expand Up @@ -699,6 +703,10 @@ func dataSourceAviServiceEngineGroup() *schema.Resource {
Type: schema.TypeString,
Computed: true,
},
"pre_upgrade_se_available_mem_threshold": {
Type: schema.TypeString,
Computed: true,
},
"realtime_se_metrics": {
Type: schema.TypeSet,
Computed: true,
Expand Down Expand Up @@ -1200,6 +1208,10 @@ func dataSourceAviServiceEngineGroup() *schema.Resource {
Type: schema.TypeString,
Computed: true,
},
"waf_use_jit_for_pcre": {
Type: schema.TypeString,
Computed: true,
},
},
}
}
17 changes: 13 additions & 4 deletions avi/datasource_avi_systemconfiguration.go
Original file line number Diff line number Diff line change
Expand Up @@ -59,10 +59,6 @@ func dataSourceAviSystemConfiguration() *schema.Resource {
Type: schema.TypeString,
Computed: true,
},
"enable_telemetry": {
Type: schema.TypeString,
Computed: true,
},
"fips_mode": {
Type: schema.TypeString,
Computed: true,
Expand Down Expand Up @@ -113,6 +109,10 @@ func dataSourceAviSystemConfiguration() *schema.Resource {
Type: schema.TypeString,
Computed: true,
},
"sddcmanager_fqdn": {
Type: schema.TypeString,
Computed: true,
},
"secure_channel_configuration": {
Type: schema.TypeSet,
Computed: true,
Expand All @@ -133,11 +133,20 @@ func dataSourceAviSystemConfiguration() *schema.Resource {
Computed: true,
Elem: &schema.Schema{Type: schema.TypeString},
},
"telemetry_configuration": {
Type: schema.TypeSet,
Computed: true,
Elem: ResourceTelemetryConfigurationSchema(),
},
"trusted_host_profiles_refs": {
Type: schema.TypeList,
Computed: true,
Elem: &schema.Schema{Type: schema.TypeString},
},
"truststore_pkiprofile_ref": {
Type: schema.TypeString,
Computed: true,
},
"uuid": {
Type: schema.TypeString,
Optional: true,
Expand Down
13 changes: 13 additions & 0 deletions avi/datasource_avi_systemreport.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,11 @@ func dataSourceAviSystemReport() *schema.Resource {
Type: schema.TypeString,
Computed: true,
},
"dryrun_info": {
Type: schema.TypeSet,
Computed: true,
Elem: ResourceDryrunInfoSchema(),
},
"events": {
Type: schema.TypeList,
Computed: true,
Expand All @@ -35,6 +40,10 @@ func dataSourceAviSystemReport() *schema.Resource {
Optional: true,
Computed: true,
},
"operation": {
Type: schema.TypeString,
Computed: true,
},
"readiness_reports": {
Type: schema.TypeList,
Computed: true,
Expand Down Expand Up @@ -64,6 +73,10 @@ func dataSourceAviSystemReport() *schema.Resource {
Optional: true,
Computed: true,
},
"type": {
Type: schema.TypeString,
Computed: true,
},
"uuid": {
Type: schema.TypeString,
Optional: true,
Expand Down
5 changes: 5 additions & 0 deletions avi/datasource_avi_taskjournal.go
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,11 @@ func dataSourceAviTaskJournal() *schema.Resource {
Computed: true,
Elem: ResourceJournalSummarySchema(),
},
"tasks": {
Type: schema.TypeList,
Computed: true,
Elem: ResourceJournalTaskSchema(),
},
"tenant_ref": {
Type: schema.TypeString,
Optional: true,
Expand Down
2 changes: 1 addition & 1 deletion avi/datasource_avi_trustedhostprofile.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ func dataSourceAviTrustedHostProfile() *schema.Resource {
"hosts": {
Type: schema.TypeList,
Computed: true,
Elem: &schema.Schema{Type: schema.TypeString},
Elem: ResourceTrustedHostSchema(),
},
"name": {
Type: schema.TypeString,
Expand Down
13 changes: 13 additions & 0 deletions avi/datasource_avi_upgradestatusinfo.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,11 @@ func dataSourceAviUpgradeStatusInfo() *schema.Resource {
Type: schema.TypeString,
Computed: true,
},
"dryrun_info": {
Type: schema.TypeSet,
Computed: true,
Elem: ResourceDryrunInfoSchema(),
},
"duration": {
Type: schema.TypeString,
Computed: true,
Expand Down Expand Up @@ -105,6 +110,10 @@ func dataSourceAviUpgradeStatusInfo() *schema.Resource {
Type: schema.TypeString,
Computed: true,
},
"prev_remote_image_ref": {
Type: schema.TypeString,
Computed: true,
},
"previous_image_ref": {
Type: schema.TypeString,
Computed: true,
Expand Down Expand Up @@ -134,6 +143,10 @@ func dataSourceAviUpgradeStatusInfo() *schema.Resource {
Type: schema.TypeString,
Computed: true,
},
"remote_image_ref": {
Type: schema.TypeString,
Computed: true,
},
"se_patch_image_path": {
Type: schema.TypeString,
Computed: true,
Expand Down
Loading
Loading