├─terraform-provider-tencentcloud Root directory
│ ├─main.go Program entry file
│ ├─AUTHORS Author information
│ ├─CHANGELOG.md Changelog
│ ├─LICENSE License information
│ ├─debug.tf.example Example debugging configuration file
│ ├─examples Directory of example configuration files
│ │ ├─tencentcloud-eip Example EIP TF files
│ │ ├─tencentcloud-instance Example CVM TF files
│ │ ├─tencentcloud-nat Example NAT Gateway TF files
│ │ ├─tencentcloud-vpc Example VPC TF files
│ │ └─ ... Directory of more examples
│ ├─tencentcloud Core provider directory
│ │ ├─basic_test.go Basic unit test
│ │ ├─config.go Public configuration file
│ │ ├─data_source_tc_availability_zones.go Availability zone query
│ │ ├─data_source_tc_availability_zones_test.go
│ │ ├─data_source_tc_nats.go NAT Gateway list query
│ │ ├─data_source_tc_nats_test.go
│ │ ├─data_source_tc_vpc.go VPC query
│ │ ├─data_source_tc_vpc_test.go
│ │ ├─... More data sources
│ │ ├─helper.go Some public functions
│ │ ├─provider.go Core provider file
│ │ ├─provider_test.go
│ │ ├─resource_tc_eip.go EIP resource manager
│ │ ├─resource_tc_eip_test.go
│ │ ├─resource_tc_instance.go CVM instance resource manager
│ │ ├─resource_tc_instance_test.go
│ │ ├─resource_tc_nat_gateway.go NAT Gateway resource manager
│ │ ├─resource_tc_nat_gateway_test.go
│ │ ├─resource_tc_vpc.go VPC Gateway resource manager
│ │ ├─resource_tc_vpc_test.go
│ │ ├─... More resource managers
│ │ ├─service_eip.go Encapsulated EIP-related service
│ │ ├─service_instance.go Encapsulated CVM-instance-related service
│ │ ├─service_vpc.go Encapsulated VPC-related service
│ │ ├─...
│ │ ├─validators.go Public argument validation function
│ ├─vendor Dependent third-party libraries
│ ├─website Web-Related files
│ │ ├─tencentcloud.erb Left sidebar file
│ │ ├─docs Source file directory of Markdown documents
│ │ │ ├─d Data-Related documents (data_source_*)
│ │ │ │ ├─availability_zones.html.md
│ │ │ │ ├─nats.html.markdown
│ │ │ │ ├─vpc.html.markdown
│ │ │ │ ├─...
│ │ │ ├─index.html.markdown
│ │ │ ├─r Resource-Related documents (resource_*)
│ │ │ │ ├─instance.html.markdown
│ │ │ │ ├─nat_gateway.html.markdown
│ │ │ │ ├─vpc.html.markdown
│ │ │ │ └─...
Was this page helpful?