├── .checkov.yaml ├── .depguard.yml ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ ├── ci.yml │ ├── codeql-analysis.yml │ ├── pr.yml │ ├── release.yml │ ├── resources.yml │ └── stale.yml ├── .gitignore ├── .goreleaser.yml ├── .markdownlint.json ├── .pre-commit-config.yaml ├── .pre-commit-hooks.yaml ├── .run ├── invoke.run.xml └── scan aws.run.xml ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── RELEASE_SUMMARY.md ├── RESOURCE_SCRIPT_README.md ├── SECURITY.md ├── bump.ps1 ├── entrypoint.sh ├── go.mod ├── go.sum ├── main.go ├── pike.jfif ├── release.ps1 ├── resource.ps1 ├── set-version.sh ├── src ├── .depguard.yml ├── aws.go ├── aws_datasource.go ├── aws_datasource_test.go ├── aws_iam_role.tf ├── aws_test.go ├── azure.go ├── azure_datasource.go ├── azure_datasource_test.go ├── azure_policy.go ├── azure_policy_test.go ├── azure_test.go ├── compare.go ├── compare_internal_test.go ├── compare_test.go ├── coverage │ ├── aws.md │ ├── azure.md │ ├── coverage.go │ ├── coverage_internal_test.go │ ├── coverage_test.go │ └── google.md ├── credentials.go ├── credentials_internal_test.go ├── credentials_test.go ├── data.go ├── data_internal_test.go ├── data_test.go ├── error.go ├── error_test.go ├── files.go ├── files_aws.go ├── files_azure.go ├── files_azure_datasource.go ├── files_datasource.go ├── files_gcp.go ├── files_gcp_datasource.go ├── gcp.go ├── gcp_datasource.go ├── gcp_datasource_test.go ├── gcp_policy.go ├── gcp_policy_test.go ├── gcp_test.go ├── gitHub.go ├── gitHub_internal_test.go ├── gitHub_test.go ├── inspect.go ├── inspect_internal_test.go ├── inspect_test.go ├── make.go ├── make_internal_test.go ├── make_test.go ├── make_windows_test.go ├── mapping │ ├── aws │ │ ├── data │ │ │ ├── account │ │ │ │ └── aws_account_primary_contact.json │ │ │ ├── acm-pca │ │ │ │ ├── aws_acmpca_certificate.json │ │ │ │ └── aws_acmpca_certificate_authority.json │ │ │ ├── acm │ │ │ │ └── aws_acm_certificate.json │ │ │ ├── aoss │ │ │ │ ├── aws_opensearchserverless_access_policy.json │ │ │ │ ├── aws_opensearchserverless_collection.json │ │ │ │ ├── aws_opensearchserverless_lifecycle_policy.json │ │ │ │ ├── aws_opensearchserverless_security_config.json │ │ │ │ ├── aws_opensearchserverless_security_policy.json │ │ │ │ └── aws_opensearchserverless_vpc_endpoint.json │ │ │ ├── apigateway │ │ │ │ ├── aws_api_gateway.json │ │ │ │ └── aws_apigatewayv2_vpc_link.json │ │ │ ├── appconfig │ │ │ │ ├── aws_appconfig_application.json │ │ │ │ ├── aws_appconfig_configuration_profile.json │ │ │ │ ├── aws_appconfig_configuration_profiles.json │ │ │ │ ├── aws_appconfig_environment.json │ │ │ │ └── aws_appconfig_environments.json │ │ │ ├── appintegrations │ │ │ │ └── aws_appintegrations_event_integration.json │ │ │ ├── appmesh │ │ │ │ ├── aws_appmesh_gateway_route.json │ │ │ │ ├── aws_appmesh_mesh.json │ │ │ │ ├── aws_appmesh_route.json │ │ │ │ ├── aws_appmesh_virtual_gateway.json │ │ │ │ ├── aws_appmesh_virtual_node.json │ │ │ │ ├── aws_appmesh_virtual_router.json │ │ │ │ └── aws_appmesh_virtual_service.json │ │ │ ├── appstream │ │ │ │ └── aws_appstream_image.json │ │ │ ├── aps │ │ │ │ ├── aws_prometheus_default_scraper_configuration.json │ │ │ │ └── aws_prometheus_workspace.json │ │ │ ├── athena │ │ │ │ └── aws_athena_named_query.json │ │ │ ├── auditmanager │ │ │ │ ├── aws_auditmanager_control.json │ │ │ │ └── aws_auditmanager_framework.json │ │ │ ├── autoscaling │ │ │ │ ├── aws_autoscaling_group.json │ │ │ │ ├── aws_autoscaling_groups.json │ │ │ │ └── aws_launch_configuration.json │ │ │ ├── backend │ │ │ │ └── s3.json │ │ │ ├── backup │ │ │ │ ├── aws_backup_framework.json │ │ │ │ ├── aws_backup_plan.json │ │ │ │ ├── aws_backup_report_plan.json │ │ │ │ ├── aws_backup_selection.json │ │ │ │ └── aws_backup_vault.json │ │ │ ├── batch │ │ │ │ ├── aws_batch_compute_environment.json │ │ │ │ ├── aws_batch_job_definition.json │ │ │ │ ├── aws_batch_job_queue.json │ │ │ │ └── aws_batch_scheduling_policy.json │ │ │ ├── bedrock │ │ │ │ ├── aws_bedrock_custom_model.json │ │ │ │ ├── aws_bedrock_custom_models.json │ │ │ │ ├── aws_bedrock_foundation_model.json │ │ │ │ ├── aws_bedrock_foundation_models.json │ │ │ │ ├── aws_bedrock_inference_profile.json │ │ │ │ ├── aws_bedrock_inference_profiles.json │ │ │ │ └── aws_bedrockagent_agent_versions.json │ │ │ ├── billing │ │ │ │ └── aws_billing_views.json │ │ │ ├── budgets │ │ │ │ └── aws_budgets_budget.json │ │ │ ├── ce │ │ │ │ ├── aws_ce_cost_category.json │ │ │ │ └── aws_ce_tags.json │ │ │ ├── chatbot │ │ │ │ └── aws_chatbot_slack_workspace.json │ │ │ ├── cloudformation │ │ │ │ ├── aws_cloudcontrolapi_resource.json │ │ │ │ ├── aws_cloudformation_export.json │ │ │ │ ├── aws_cloudformation_stack.json │ │ │ │ └── aws_cloudformation_type.json │ │ │ ├── cloudfront │ │ │ │ ├── aws_cloudfront_cache_policy.json │ │ │ │ ├── aws_cloudfront_distribution.json │ │ │ │ ├── aws_cloudfront_function.json │ │ │ │ ├── aws_cloudfront_origin_access_control.json │ │ │ │ ├── aws_cloudfront_origin_access_identities.json │ │ │ │ ├── aws_cloudfront_origin_access_identity.json │ │ │ │ ├── aws_cloudfront_origin_request_policy.json │ │ │ │ ├── aws_cloudfront_realtime_log_config.json │ │ │ │ └── aws_cloudfront_response_headers_policy.json │ │ │ ├── cloudhsm │ │ │ │ └── aws_cloudhsm_v2_cluster.json │ │ │ ├── cloudwatch │ │ │ │ ├── aws_cloudwatch_contributor_managed_insight_rules.json │ │ │ │ ├── aws_cloudwatch_event_bus.json │ │ │ │ ├── aws_cloudwatch_event_buses.json │ │ │ │ ├── aws_cloudwatch_event_connection.json │ │ │ │ ├── aws_cloudwatch_event_source.json │ │ │ │ ├── aws_cloudwatch_log_group.json │ │ │ │ └── aws_cloudwatch_log_groups.json │ │ │ ├── codeartifact │ │ │ │ ├── aws_codeartifact_authorization_token.json │ │ │ │ └── aws_codeartifact_repository_endpoint.json │ │ │ ├── codebuild │ │ │ │ └── aws_codebuild_fleet.json │ │ │ ├── codecommit │ │ │ │ ├── aws_codecommit_approval_rule_template.json │ │ │ │ └── aws_codecommit_repository.json │ │ │ ├── codeguru-profiler │ │ │ │ └── aws_codeguruprofiler_profiling_group.json │ │ │ ├── codestar-connections │ │ │ │ └── aws_codestarconnections_connection.json │ │ │ ├── cognito-identity │ │ │ │ └── aws_cognito_identity_pool.json │ │ │ ├── cognito-idp │ │ │ │ ├── aws_cognito_user_group.json │ │ │ │ ├── aws_cognito_user_groups.json │ │ │ │ ├── aws_cognito_user_pool.json │ │ │ │ ├── aws_cognito_user_pool_client.json │ │ │ │ ├── aws_cognito_user_pool_clients.json │ │ │ │ ├── aws_cognito_user_pool_signing_certificate.json │ │ │ │ └── aws_cognito_user_pools.json │ │ │ ├── connect │ │ │ │ ├── aws_connect_bot_association.json │ │ │ │ ├── aws_connect_contact_flow.json │ │ │ │ ├── aws_connect_contact_flow_module.json │ │ │ │ ├── aws_connect_hours_of_operation.json │ │ │ │ ├── aws_connect_instance.json │ │ │ │ ├── aws_connect_instance_storage_config.json │ │ │ │ ├── aws_connect_lambda_function_association.json │ │ │ │ ├── aws_connect_prompt.json │ │ │ │ ├── aws_connect_queue.json │ │ │ │ ├── aws_connect_quick_connect.json │ │ │ │ ├── aws_connect_routing_profile.json │ │ │ │ ├── aws_connect_security_profile.json │ │ │ │ ├── aws_connect_user.json │ │ │ │ ├── aws_connect_user_hierarchy_group.json │ │ │ │ ├── aws_connect_user_hierarchy_structure.json │ │ │ │ └── aws_connect_vocabulary.json │ │ │ ├── controltower │ │ │ │ └── aws_controltower_controls.json │ │ │ ├── datapipeline │ │ │ │ ├── aws_datapipeline_pipeline.json │ │ │ │ └── aws_datapipeline_pipeline_definition.json │ │ │ ├── datazone │ │ │ │ ├── aws_datazone_domain.json │ │ │ │ └── aws_datazone_environment_blueprint.json │ │ │ ├── devopsguru │ │ │ │ ├── aws_devopsguru_notification_channel.json │ │ │ │ └── aws_devopsguru_resource_collection.json │ │ │ ├── directconnect │ │ │ │ ├── aws_dx_connection.json │ │ │ │ ├── aws_dx_gateway.json │ │ │ │ ├── aws_dx_location.json │ │ │ │ ├── aws_dx_locations.json │ │ │ │ └── aws_dx_router_configuration.json │ │ │ ├── directoryservice │ │ │ │ └── aws_directory_service_directory.json │ │ │ ├── dms │ │ │ │ ├── aws_dms_certificate.json │ │ │ │ ├── aws_dms_endpoint.json │ │ │ │ ├── aws_dms_replication_instance.json │ │ │ │ ├── aws_dms_replication_subnet_group.json │ │ │ │ └── aws_dms_replication_task.json │ │ │ ├── dynamodb │ │ │ │ ├── aws_dynamodb_table.json │ │ │ │ ├── aws_dynamodb_table_item.json │ │ │ │ └── aws_dynamodb_tables.json │ │ │ ├── ec2 │ │ │ │ ├── aws_ami.json │ │ │ │ ├── aws_ami_ids.json │ │ │ │ ├── aws_availability_zone.json │ │ │ │ ├── aws_availability_zones.json │ │ │ │ ├── aws_customer_gateway.json │ │ │ │ ├── aws_ebs_default_kms_key.json │ │ │ │ ├── aws_ebs_encryption_by_default.json │ │ │ │ ├── aws_ebs_snapshot.json │ │ │ │ ├── aws_ebs_snapshot_ids.json │ │ │ │ ├── aws_ebs_volume.json │ │ │ │ ├── aws_ebs_volumes.json │ │ │ │ ├── aws_ec2_capacity_block_offering.json │ │ │ │ ├── aws_ec2_client_vpn_endpoint.json │ │ │ │ ├── aws_ec2_coip_pool.json │ │ │ │ ├── aws_ec2_coip_pools.json │ │ │ │ ├── aws_ec2_host.json │ │ │ │ ├── aws_ec2_instance_type.json │ │ │ │ ├── aws_ec2_instance_type_offering.json │ │ │ │ ├── aws_ec2_instance_type_offerings.json │ │ │ │ ├── aws_ec2_instance_types.json │ │ │ │ ├── aws_ec2_local_gateway.json │ │ │ │ ├── aws_ec2_local_gateway_route_table.json │ │ │ │ ├── aws_ec2_local_gateway_route_tables.json │ │ │ │ ├── aws_ec2_local_gateway_virtual_interface.json │ │ │ │ ├── aws_ec2_local_gateway_virtual_interface_group.json │ │ │ │ ├── aws_ec2_local_gateway_virtual_interface_groups.json │ │ │ │ ├── aws_ec2_local_gateways.json │ │ │ │ ├── aws_ec2_managed_prefix_list.json │ │ │ │ ├── aws_ec2_managed_prefix_lists.json │ │ │ │ ├── aws_ec2_network_insights_analysis.json │ │ │ │ ├── aws_ec2_network_insights_path.json │ │ │ │ ├── aws_ec2_public_ipv4_pool.json │ │ │ │ ├── aws_ec2_public_ipv4_pools.json │ │ │ │ ├── aws_ec2_serial_console_access.json │ │ │ │ ├── aws_ec2_spot_price.json │ │ │ │ ├── aws_ec2_transit_gateway.json │ │ │ │ ├── aws_ec2_transit_gateway_attachment.json │ │ │ │ ├── aws_ec2_transit_gateway_attachments.json │ │ │ │ ├── aws_ec2_transit_gateway_connect.json │ │ │ │ ├── aws_ec2_transit_gateway_connect_peer.json │ │ │ │ ├── aws_ec2_transit_gateway_dx_gateway_attachment.json │ │ │ │ ├── aws_ec2_transit_gateway_multicast_domain.json │ │ │ │ ├── aws_ec2_transit_gateway_peering_attachment.json │ │ │ │ ├── aws_ec2_transit_gateway_peering_attachments.json │ │ │ │ ├── aws_ec2_transit_gateway_route_table.json │ │ │ │ ├── aws_ec2_transit_gateway_route_table_associations.json │ │ │ │ ├── aws_ec2_transit_gateway_route_table_routes.json │ │ │ │ ├── aws_ec2_transit_gateway_route_tables.json │ │ │ │ ├── aws_ec2_transit_gateway_vpc_attachment.json │ │ │ │ ├── aws_ec2_transit_gateway_vpc_attachments.json │ │ │ │ ├── aws_ec2_transit_gateway_vpn_attachment.json │ │ │ │ ├── aws_ec2_transitgateway_route_table_propagations.json │ │ │ │ ├── aws_eip.json │ │ │ │ ├── aws_eips.json │ │ │ │ ├── aws_instance.json │ │ │ │ ├── aws_instances.json │ │ │ │ ├── aws_internet_gateway.json │ │ │ │ ├── aws_key_pair.json │ │ │ │ ├── aws_launch_template.json │ │ │ │ ├── aws_nat_gateway.json │ │ │ │ ├── aws_nat_gateways.json │ │ │ │ ├── aws_network_acls.json │ │ │ │ ├── aws_network_interface.json │ │ │ │ ├── aws_network_interfaces.json │ │ │ │ ├── aws_prefix_list.json │ │ │ │ ├── aws_regions.json │ │ │ │ ├── aws_route.json │ │ │ │ ├── aws_route_table.json │ │ │ │ ├── aws_route_tables.json │ │ │ │ ├── aws_security_group.json │ │ │ │ ├── aws_security_groups.json │ │ │ │ ├── aws_spot_datafeed_subscription.json │ │ │ │ ├── aws_subnet.json │ │ │ │ ├── aws_subnets.json │ │ │ │ ├── aws_subnets_ids.json │ │ │ │ ├── aws_vpc.json │ │ │ │ ├── aws_vpc_dhcp_options.json │ │ │ │ ├── aws_vpc_endpoint.json │ │ │ │ ├── aws_vpc_endpoint_associations.json │ │ │ │ ├── aws_vpc_endpoint_service.json │ │ │ │ ├── aws_vpc_ipam.json │ │ │ │ ├── aws_vpc_ipam_pool.json │ │ │ │ ├── aws_vpc_ipam_pool_cidrs.json │ │ │ │ ├── aws_vpc_ipam_pools.json │ │ │ │ ├── aws_vpc_peering_connection.json │ │ │ │ ├── aws_vpc_peering_connections.json │ │ │ │ ├── aws_vpc_security_group_rule.json │ │ │ │ ├── aws_vpc_security_group_rules.json │ │ │ │ ├── aws_vpcs.json │ │ │ │ ├── aws_vpn_connection.json │ │ │ │ └── aws_vpn_gateway.json │ │ │ ├── ecr-public │ │ │ │ ├── aws_ecrpublic_authorization_token.json │ │ │ │ └── aws_ecrpublic_images.json │ │ │ ├── ecr │ │ │ │ ├── aws_ecr_authorization_token.json │ │ │ │ ├── aws_ecr_image.json │ │ │ │ ├── aws_ecr_images.json │ │ │ │ ├── aws_ecr_pull_through_cache_rule.json │ │ │ │ ├── aws_ecr_repositories.json │ │ │ │ ├── aws_ecr_repository.json │ │ │ │ └── aws_ecr_repository_creation_template.json │ │ │ ├── ecs │ │ │ │ ├── aws_ecs_cluster.json │ │ │ │ ├── aws_ecs_clusters.json │ │ │ │ ├── aws_ecs_container_definition.json │ │ │ │ ├── aws_ecs_service.json │ │ │ │ ├── aws_ecs_task_definition.json │ │ │ │ └── aws_ecs_task_execution.json │ │ │ ├── eks │ │ │ │ ├── aws_eks_access_entry.json │ │ │ │ ├── aws_eks_addon.json │ │ │ │ ├── aws_eks_addon_version.json │ │ │ │ ├── aws_eks_cluster.json │ │ │ │ ├── aws_eks_cluster_versions.json │ │ │ │ ├── aws_eks_clusters.json │ │ │ │ ├── aws_eks_node_group.json │ │ │ │ └── aws_eks_node_groups.json │ │ │ ├── elasticache │ │ │ │ ├── aws_elasticache_cluster.json │ │ │ │ ├── aws_elasticache_replication_group.json │ │ │ │ ├── aws_elasticache_reserved_cache_node_offering.json │ │ │ │ ├── aws_elasticache_serverless_cache.json │ │ │ │ ├── aws_elasticache_subnet_group.json │ │ │ │ └── aws_elasticache_user.json │ │ │ ├── elasticbeanstalk │ │ │ │ ├── aws_elastic_beanstalk_application.json │ │ │ │ └── aws_elastic_beanstalk_solution_stack.json │ │ │ ├── elasticfilesystem │ │ │ │ ├── aws_efs_access_point.json │ │ │ │ ├── aws_efs_access_points.json │ │ │ │ ├── aws_efs_file_system.json │ │ │ │ └── aws_efs_mount_target.json │ │ │ ├── elasticloadbalancing │ │ │ │ ├── aws_elb.json │ │ │ │ ├── aws_elb_hosted_zone_id.json │ │ │ │ ├── aws_elb_service_account.json │ │ │ │ ├── aws_lb.json │ │ │ │ ├── aws_lb_hosted_zone_id.json │ │ │ │ ├── aws_lb_listener.json │ │ │ │ ├── aws_lb_listener_rule.json │ │ │ │ ├── aws_lb_target_group.json │ │ │ │ ├── aws_lb_trust_store.json │ │ │ │ └── aws_lbs.json │ │ │ ├── elasticmapreduce │ │ │ │ ├── aws_emr_release_labels.json │ │ │ │ └── aws_emr_supported_instance_types.json │ │ │ ├── elasticsearch │ │ │ │ └── aws_elasticsearch_domain.json │ │ │ ├── emr-containers │ │ │ │ └── aws_emrcontainers_virtual_cluster.json │ │ │ ├── fis │ │ │ │ └── aws_fis_experiment_templates.json │ │ │ ├── fsx │ │ │ │ ├── aws_fsx_ontap_file_system.json │ │ │ │ ├── aws_fsx_ontap_storage_virtual_machine.json │ │ │ │ ├── aws_fsx_ontap_storage_virtual_machines.json │ │ │ │ ├── aws_fsx_openzfs_snapshot.json │ │ │ │ └── aws_fsx_windows_file_system.json │ │ │ ├── geo │ │ │ │ ├── aws_location_geofence_collection.json │ │ │ │ ├── aws_location_map.json │ │ │ │ ├── aws_location_place_index.json │ │ │ │ ├── aws_location_route_calculator.json │ │ │ │ ├── aws_location_tracker.json │ │ │ │ ├── aws_location_tracker_association.json │ │ │ │ └── aws_location_tracker_associations.json │ │ │ ├── globalaccelerator │ │ │ │ ├── aws_globalaccelerator_accelerator.json │ │ │ │ └── aws_globalaccelerator_custom_routing_accelerator.json │ │ │ ├── glue │ │ │ │ ├── aws_glue_catalog_table.json │ │ │ │ ├── aws_glue_connection.json │ │ │ │ ├── aws_glue_data_catalog_encryption_settings.json │ │ │ │ ├── aws_glue_registry.json │ │ │ │ └── aws_glue_script.json │ │ │ ├── grafana │ │ │ │ └── aws_grafana_workspace.json │ │ │ ├── guardduty │ │ │ │ ├── aws_guardduty_detector.json │ │ │ │ └── aws_guardduty_finding_ids.json │ │ │ ├── iam │ │ │ │ ├── aws_iam_access_keys.json │ │ │ │ ├── aws_iam_account_alias.json │ │ │ │ ├── aws_iam_group.json │ │ │ │ ├── aws_iam_instance_profile.json │ │ │ │ ├── aws_iam_instance_profiles.json │ │ │ │ ├── aws_iam_openid_connect_provider.json │ │ │ │ ├── aws_iam_policy.json │ │ │ │ ├── aws_iam_principal_policy_simulation.json │ │ │ │ ├── aws_iam_role.json │ │ │ │ ├── aws_iam_roles.json │ │ │ │ ├── aws_iam_saml_provider.json │ │ │ │ ├── aws_iam_server_certificate.json │ │ │ │ ├── aws_iam_session_context.json │ │ │ │ ├── aws_iam_user.json │ │ │ │ ├── aws_iam_user_ssh_key.json │ │ │ │ ├── aws_iam_users.json │ │ │ │ └── aws_saml_provider.json │ │ │ ├── identitystore │ │ │ │ ├── aws_identitystore_group.json │ │ │ │ ├── aws_identitystore_group_memberships.json │ │ │ │ ├── aws_identitystore_user.json │ │ │ │ └── aws_identitystore_users.json │ │ │ ├── imagebuilder │ │ │ │ ├── aws_imagebuilder_component.json │ │ │ │ ├── aws_imagebuilder_components.json │ │ │ │ ├── aws_imagebuilder_container_recipe.json │ │ │ │ ├── aws_imagebuilder_container_recipes.json │ │ │ │ ├── aws_imagebuilder_distribution_configuration.json │ │ │ │ ├── aws_imagebuilder_distribution_configurations.json │ │ │ │ ├── aws_imagebuilder_image.json │ │ │ │ ├── aws_imagebuilder_image_pipeline.json │ │ │ │ ├── aws_imagebuilder_image_pipelines.json │ │ │ │ ├── aws_imagebuilder_image_recipe.json │ │ │ │ ├── aws_imagebuilder_image_recipes.json │ │ │ │ ├── aws_imagebuilder_infrastructure_configuration.json │ │ │ │ └── aws_imagebuilder_infrastructure_configurations.json │ │ │ ├── inspector │ │ │ │ └── aws_inspector_rules_packages.json │ │ │ ├── iot │ │ │ │ ├── aws_iot_endpoint.json │ │ │ │ └── aws_iot_registration_code.json │ │ │ ├── ivs │ │ │ │ └── aws_ivs_stream_key.json │ │ │ ├── kafka │ │ │ │ ├── aws_msk_bootstrap_brokers.json │ │ │ │ ├── aws_msk_broker_nodes.json │ │ │ │ ├── aws_msk_cluster.json │ │ │ │ ├── aws_msk_configuration.json │ │ │ │ ├── aws_msk_kafka_version.json │ │ │ │ ├── aws_msk_vpc_connection.json │ │ │ │ ├── aws_mskconnect_connector.json │ │ │ │ ├── aws_mskconnect_custom_plugin.json │ │ │ │ └── aws_mskconnect_worker_configuration.json │ │ │ ├── kendra │ │ │ │ ├── aws_kendra_experience.json │ │ │ │ ├── aws_kendra_faq.json │ │ │ │ ├── aws_kendra_index.json │ │ │ │ ├── aws_kendra_query_suggestions_block_list.json │ │ │ │ └── aws_kendra_thesaurus.json │ │ │ ├── kinesis │ │ │ │ ├── aws_kinesis_firehose_delivery_stream.json │ │ │ │ ├── aws_kinesis_stream.json │ │ │ │ └── aws_kinesis_stream_consumer.json │ │ │ ├── kms │ │ │ │ ├── aws_kms_alias.json │ │ │ │ ├── aws_kms_ciphertext.json │ │ │ │ ├── aws_kms_custom_key_store.json │ │ │ │ ├── aws_kms_key.json │ │ │ │ ├── aws_kms_public_key.json │ │ │ │ └── aws_kms_secrets.json │ │ │ ├── lakeformation │ │ │ │ ├── aws_lakeformation_data_lake_settings.json │ │ │ │ ├── aws_lakeformation_permissions.json │ │ │ │ └── aws_lakeformation_resource.json │ │ │ ├── lambda │ │ │ │ ├── aws_lambda_alias.json │ │ │ │ ├── aws_lambda_code_signing_config.json │ │ │ │ ├── aws_lambda_function.json │ │ │ │ ├── aws_lambda_function_url.json │ │ │ │ ├── aws_lambda_functions.json │ │ │ │ ├── aws_lambda_invocation.json │ │ │ │ └── aws_lambda_layer_version.json │ │ │ ├── lex │ │ │ │ ├── aws_lex_bot.json │ │ │ │ ├── aws_lex_bot_alias.json │ │ │ │ ├── aws_lex_intent.json │ │ │ │ └── aws_lex_slot_type.json │ │ │ ├── license-manager │ │ │ │ ├── aws_licensemanager_grants.json │ │ │ │ ├── aws_licensemanager_received_license.json │ │ │ │ └── aws_licensemanager_received_licenses.json │ │ │ ├── mediaconvert │ │ │ │ └── aws_media_convert_queue.json │ │ │ ├── medialive │ │ │ │ └── aws_medialive_input.json │ │ │ ├── memorydb │ │ │ │ ├── aws_memorydb_acl.json │ │ │ │ ├── aws_memorydb_cluster.json │ │ │ │ ├── aws_memorydb_parameter_group.json │ │ │ │ ├── aws_memorydb_snapshot.json │ │ │ │ ├── aws_memorydb_subnet_group.json │ │ │ │ └── aws_memorydb_user.json │ │ │ ├── mq │ │ │ │ ├── aws_mq_broker.json │ │ │ │ ├── aws_mq_broker_engine_types.json │ │ │ │ └── aws_mq_broker_instance_type_offerings.json │ │ │ ├── network-firewall │ │ │ │ ├── aws_networkfirewall_firewall.json │ │ │ │ ├── aws_networkfirewall_firewall_policy.json │ │ │ │ └── aws_networkfirewall_resource_policy.json │ │ │ ├── networkmanager │ │ │ │ ├── aws_networkmanager_connection.json │ │ │ │ ├── aws_networkmanager_connections.json │ │ │ │ ├── aws_networkmanager_device.json │ │ │ │ ├── aws_networkmanager_devices.json │ │ │ │ ├── aws_networkmanager_global_network.json │ │ │ │ ├── aws_networkmanager_global_networks.json │ │ │ │ ├── aws_networkmanager_link.json │ │ │ │ ├── aws_networkmanager_links.json │ │ │ │ ├── aws_networkmanager_site.json │ │ │ │ └── aws_networkmanager_sites.json │ │ │ ├── oam │ │ │ │ ├── aws_oam_link.json │ │ │ │ ├── aws_oam_links.json │ │ │ │ ├── aws_oam_sink.json │ │ │ │ └── aws_oam_sinks.json │ │ │ ├── odb │ │ │ │ ├── aws_odb_cloud_autonomous_vm_cluster.json │ │ │ │ ├── aws_odb_cloud_autonomous_vm_clusters.json │ │ │ │ ├── aws_odb_cloud_exadata_infrastructure.json │ │ │ │ ├── aws_odb_cloud_exadata_infrastructures.json │ │ │ │ ├── aws_odb_cloud_vm_cluster.json │ │ │ │ ├── aws_odb_cloud_vm_clusters.json │ │ │ │ ├── aws_odb_db_node.json │ │ │ │ ├── aws_odb_db_nodes.json │ │ │ │ ├── aws_odb_db_server.json │ │ │ │ ├── aws_odb_db_servers.json │ │ │ │ ├── aws_odb_db_system_shapes.json │ │ │ │ ├── aws_odb_gi_versions.json │ │ │ │ ├── aws_odb_network.json │ │ │ │ ├── aws_odb_network_peering_connection.json │ │ │ │ ├── aws_odb_network_peering_connections.json │ │ │ │ └── aws_odb_networks.json │ │ │ ├── organizations │ │ │ │ ├── aws_organizations_delegated_administrators.json │ │ │ │ ├── aws_organizations_delegated_services.json │ │ │ │ ├── aws_organizations_organization.json │ │ │ │ ├── aws_organizations_organizational_unit.json │ │ │ │ ├── aws_organizations_organizational_unit_child_accounts.json │ │ │ │ ├── aws_organizations_organizational_unit_descendant_accounts.json │ │ │ │ ├── aws_organizations_organizational_unit_descendant_organizational_units.json │ │ │ │ ├── aws_organizations_organizational_units.json │ │ │ │ ├── aws_organizations_policies.json │ │ │ │ ├── aws_organizations_policies_for_target.json │ │ │ │ ├── aws_organizations_policy.json │ │ │ │ └── aws_organizations_resource_tags.json │ │ │ ├── outposts │ │ │ │ ├── aws_outposts_asset.json │ │ │ │ ├── aws_outposts_assets.json │ │ │ │ ├── aws_outposts_outpost.json │ │ │ │ ├── aws_outposts_outpost_instance_type.json │ │ │ │ ├── aws_outposts_outpost_instance_types.json │ │ │ │ ├── aws_outposts_outposts.json │ │ │ │ ├── aws_outposts_site.json │ │ │ │ └── aws_outposts_sites.json │ │ │ ├── polly │ │ │ │ └── aws_polly_voices.json │ │ │ ├── prometheus │ │ │ │ ├── aws_prometheus_workspace.json │ │ │ │ └── aws_prometheus_workspaces.json │ │ │ ├── qldb │ │ │ │ └── aws_qldb_ledger.json │ │ │ ├── quicksight │ │ │ │ ├── aws_quicksight_analysis.json │ │ │ │ ├── aws_quicksight_group.json │ │ │ │ ├── aws_quicksight_theme.json │ │ │ │ └── aws_quicksight_user.json │ │ │ ├── ram │ │ │ │ └── aws_ram_resource_share.json │ │ │ ├── rds │ │ │ │ ├── aws_db_cluster_snapshot.json │ │ │ │ ├── aws_db_event_categories.json │ │ │ │ ├── aws_db_instance.json │ │ │ │ ├── aws_db_instances.json │ │ │ │ ├── aws_db_parameter_group.json │ │ │ │ ├── aws_db_snapshot.json │ │ │ │ ├── aws_db_subnet_group.json │ │ │ │ ├── aws_docdb_engine_version.json │ │ │ │ ├── aws_docdb_orderable_db_instance.json │ │ │ │ ├── aws_neptune_engine_version.json │ │ │ │ ├── aws_neptune_orderable_db_instance.json │ │ │ │ ├── aws_rds_certificate.json │ │ │ │ ├── aws_rds_cluster.json │ │ │ │ ├── aws_rds_cluster_parameter_group.json │ │ │ │ ├── aws_rds_clusters.json │ │ │ │ ├── aws_rds_engine_version.json │ │ │ │ ├── aws_rds_global_cluster.json │ │ │ │ ├── aws_rds_orderable_db_instance.json │ │ │ │ └── aws_rds_reserved_instance_offering.json │ │ │ ├── redshift-serverless │ │ │ │ ├── awas_redshiftserverless_namespace.json │ │ │ │ └── awas_redshiftserverless_workgroups.json │ │ │ ├── redshift │ │ │ │ ├── aws_redshift_cluster.json │ │ │ │ ├── aws_redshift_cluster_credentials.json │ │ │ │ ├── aws_redshift_data_shares.json │ │ │ │ ├── aws_redshift_orderable_cluster.json │ │ │ │ ├── aws_redshift_producer_data_shares.json │ │ │ │ └── aws_redshift_subnet_group.json │ │ │ ├── resource-explorer-2 │ │ │ │ └── aws_resourceexplorer2_search.json │ │ │ ├── route53 │ │ │ │ ├── aws_route53_delegation_set.json │ │ │ │ ├── aws_route53_records.json │ │ │ │ ├── aws_route53_resolver_firewall_config.json │ │ │ │ ├── aws_route53_resolver_firewall_domain_list.json │ │ │ │ ├── aws_route53_resolver_firewall_rule_group.json │ │ │ │ ├── aws_route53_resolver_firewall_rule_group_association.json │ │ │ │ ├── aws_route53_resolver_firewall_rules.json │ │ │ │ ├── aws_route53_resolver_rule.json │ │ │ │ ├── aws_route53_zone.json │ │ │ │ └── aws_route53_zones.json │ │ │ ├── route53profiles │ │ │ │ └── aws_route53profiles_profiles.json │ │ │ ├── route53resolver │ │ │ │ ├── aws_route53_resolver_endpoint.json │ │ │ │ ├── aws_route53_resolver_query_log_config.json │ │ │ │ └── aws_route53_resolver_rules.json │ │ │ ├── s3 │ │ │ │ ├── aws_s3_access_point.json │ │ │ │ ├── aws_s3_account_public_access_block.json │ │ │ │ ├── aws_s3_bucket.json │ │ │ │ ├── aws_s3_bucket_policy.json │ │ │ │ ├── aws_s3_objects.json │ │ │ │ └── aws_s3control_multi_region_access_point.json │ │ │ ├── s3express │ │ │ │ └── aws_s3_directory_buckets.json │ │ │ ├── secretsmanager │ │ │ │ ├── aws_secretsmanager_random_password.json │ │ │ │ ├── aws_secretsmanager_secret.json │ │ │ │ ├── aws_secretsmanager_secret_rotation.json │ │ │ │ ├── aws_secretsmanager_secret_version.json │ │ │ │ ├── aws_secretsmanager_secret_versions.json │ │ │ │ └── aws_secretsmanager_secrets.json │ │ │ ├── securityhub │ │ │ │ └── aws_securityhub_standards_control_associations.json │ │ │ ├── serverlessrepo │ │ │ │ └── aws_serverlessapplicationrepository_application.json │ │ │ ├── servicecatalog │ │ │ │ ├── aws_servicecatalog_constraint.json │ │ │ │ ├── aws_servicecatalog_launch_paths.json │ │ │ │ ├── aws_servicecatalog_portfolio.json │ │ │ │ ├── aws_servicecatalog_portfolio_constraints.json │ │ │ │ ├── aws_servicecatalog_product.json │ │ │ │ ├── aws_servicecatalog_provisioning_artifacts.json │ │ │ │ ├── aws_servicecatalogappregistry_application.json │ │ │ │ ├── aws_servicecatalogappregistry_attribute_group.json │ │ │ │ └── aws_servicecatalogappregistry_attribute_group_associations.json │ │ │ ├── servicediscovery │ │ │ │ ├── aws_service_discovery_dns_namespace.json │ │ │ │ ├── aws_service_discovery_http_namespace.json │ │ │ │ └── aws_service_discovery_service.json │ │ │ ├── servicequota │ │ │ │ ├── aws_servicequotas_service.json │ │ │ │ ├── aws_servicequotas_service_quota.json │ │ │ │ └── aws_servicequotas_templates.json │ │ │ ├── ses │ │ │ │ ├── aws_ses_active_receipt_rule_set.json │ │ │ │ ├── aws_ses_domain_identity.json │ │ │ │ ├── aws_ses_email_identity.json │ │ │ │ ├── aws_sesv2_configuration_set.json │ │ │ │ ├── aws_sesv2_dedicated_ip_pool.json │ │ │ │ └── aws_sesv2_email_identity.json │ │ │ ├── shield │ │ │ │ └── aws_shield_protection.json │ │ │ ├── signer │ │ │ │ ├── aws_signer_signing_job.json │ │ │ │ └── aws_signer_signing_profile.json │ │ │ ├── sns │ │ │ │ └── aws_sns_topic.json │ │ │ ├── sqs │ │ │ │ ├── aws_sqs_queue.json │ │ │ │ └── aws_sqs_queues.json │ │ │ ├── ssm-contacts │ │ │ │ └── aws_ssmcontacts_rotation.json │ │ │ ├── ssm-incidents │ │ │ │ └── aws_ssmincidents_replication_set.json │ │ │ ├── ssm │ │ │ │ ├── aws_ssm_document.json │ │ │ │ ├── aws_ssm_instances.json │ │ │ │ ├── aws_ssm_maintenance_windows.json │ │ │ │ ├── aws_ssm_parameter.json │ │ │ │ ├── aws_ssm_parameters_by_path.json │ │ │ │ ├── aws_ssm_patch_baseline.json │ │ │ │ └── aws_ssm_patch_baselines.json │ │ │ ├── sso │ │ │ │ ├── aws_identitystore_groups.json │ │ │ │ ├── aws_ssoadmin_application_assignments.json │ │ │ │ ├── aws_ssoadmin_application_providers.json │ │ │ │ ├── aws_ssoadmin_instances.json │ │ │ │ ├── aws_ssoadmin_permission_set.json │ │ │ │ ├── aws_ssoadmin_permission_sets.json │ │ │ │ └── aws_ssoadmin_principal_application_assignments.json │ │ │ ├── states │ │ │ │ ├── aws_sfn_activity.json │ │ │ │ ├── aws_sfn_alias.json │ │ │ │ ├── aws_sfn_state_machine.json │ │ │ │ └── aws_sfn_state_machine_versions.json │ │ │ ├── synthetics │ │ │ │ ├── aws_synthetics_runtime_version.json │ │ │ │ └── aws_synthetics_runtime_versions.json │ │ │ ├── tag │ │ │ │ └── aws_resourcegroupstaggingapi_resources.json │ │ │ ├── template.json │ │ │ ├── timestream │ │ │ │ ├── aws_timestreamwrite_database.json │ │ │ │ └── aws_timestreamwrite_table.json │ │ │ ├── transfer │ │ │ │ ├── aws_transfer_connector.json │ │ │ │ └── aws_transfer_server.json │ │ │ ├── verifiedpermissions │ │ │ │ └── aws_verifiedpermissions_policy_store.json │ │ │ ├── vpc-lattice │ │ │ │ ├── aws_vpclattice_auth_policy.json │ │ │ │ ├── aws_vpclattice_listener.json │ │ │ │ ├── aws_vpclattice_resource_policy.json │ │ │ │ ├── aws_vpclattice_service.json │ │ │ │ └── aws_vpclattice_service_network.json │ │ │ ├── waf │ │ │ │ ├── aws_waf_ipset.json │ │ │ │ ├── aws_waf_rate_based_rule.json │ │ │ │ ├── aws_waf_rule.json │ │ │ │ ├── aws_waf_subscribed_rule_group.json │ │ │ │ └── aws_waf_web_acl.json │ │ │ ├── wafregional │ │ │ │ ├── aws_wafregional_ipset.json │ │ │ │ ├── aws_wafregional_rate_based_rule.json │ │ │ │ ├── aws_wafregional_rule.json │ │ │ │ ├── aws_wafregional_subscribed_rule_group.json │ │ │ │ └── aws_wafregional_web_acl.json │ │ │ ├── wafv2 │ │ │ │ ├── aws_wafv2_ip_set.json │ │ │ │ ├── aws_wafv2_regex_pattern_set.json │ │ │ │ ├── aws_wafv2_rule_group.json │ │ │ │ └── aws_wafv2_web_acl.json │ │ │ └── workspaces │ │ │ │ ├── aws_workspaces_bundle.json │ │ │ │ ├── aws_workspaces_directory.json │ │ │ │ ├── aws_workspaces_image.json │ │ │ │ └── aws_workspaces_workspace.json │ │ └── resource │ │ │ ├── access-analyzer │ │ │ ├── aws_accessanalyzer_analyzer.json │ │ │ └── aws_accessanalyzer_archive_rule.json │ │ │ ├── account │ │ │ ├── aws_account_alternate_contact.json │ │ │ ├── aws_account_primary_contact.json │ │ │ └── aws_account_region.json │ │ │ ├── acm-pa │ │ │ ├── aws_acmpca_certificate.json │ │ │ ├── aws_acmpca_certificate_authority.json │ │ │ ├── aws_acmpca_certificate_authority_certificate.json │ │ │ ├── aws_acmpca_permission.json │ │ │ └── aws_acmpca_policy.json │ │ │ ├── acm │ │ │ └── aws_acm_certificate.json │ │ │ ├── airflow │ │ │ └── aws_mwaa_environment.json │ │ │ ├── amplify │ │ │ ├── aws_amplify_app.json │ │ │ ├── aws_amplify_backend_environment.json │ │ │ ├── aws_amplify_branch.json │ │ │ ├── aws_amplify_domain_association.json │ │ │ └── aws_amplify_webhook.json │ │ │ ├── aoss │ │ │ ├── aws_opensearchserverless_access_policy.json │ │ │ ├── aws_opensearchserverless_collection.json │ │ │ ├── aws_opensearchserverless_lifecycle_policy.json │ │ │ ├── aws_opensearchserverless_security_config.json │ │ │ ├── aws_opensearchserverless_security_policy.json │ │ │ └── aws_opensearchserverless_vpc_endpoint.json │ │ │ ├── apigateway │ │ │ ├── aws_api_gateway_account.json │ │ │ ├── aws_api_gateway_domain_name_access_association.json │ │ │ ├── aws_api_gateway_rest_api.json │ │ │ └── aws_apigatewayv2_api.json │ │ │ ├── app-integrations │ │ │ ├── aws_appintegrations_data_integration.json │ │ │ └── aws_appintegrations_event_integration.json │ │ │ ├── appconfig │ │ │ ├── aws_appconfig_application.json │ │ │ ├── aws_appconfig_configuration_profile.json │ │ │ ├── aws_appconfig_deployment.json │ │ │ ├── aws_appconfig_deployment_strategy.json │ │ │ ├── aws_appconfig_environment.json │ │ │ ├── aws_appconfig_extension.json │ │ │ ├── aws_appconfig_extension_association.json │ │ │ └── aws_appconfig_hosted_configuration_version.json │ │ │ ├── appfabric │ │ │ ├── aws_appfabric_app_authorization.json │ │ │ ├── aws_appfabric_app_authorization_connection.json │ │ │ ├── aws_appfabric_app_bundle.json │ │ │ ├── aws_appfabric_ingestion.json │ │ │ └── aws_appfabric_ingestion_destination.json │ │ │ ├── appflow │ │ │ ├── aws_appflow_connector_profile.json │ │ │ └── aws_appflow_flow.json │ │ │ ├── application-autoscaling │ │ │ ├── aws_appautoscaling_policy.json │ │ │ ├── aws_appautoscaling_scheduled_action.json │ │ │ └── aws_appautoscaling_target.json │ │ │ ├── applicationinsights │ │ │ └── aws_applicationinsights_application.json │ │ │ ├── appmesh │ │ │ ├── aws_appmesh_gateway_route.json │ │ │ ├── aws_appmesh_mesh.json │ │ │ ├── aws_appmesh_route.json │ │ │ ├── aws_appmesh_virtual_gateway.json │ │ │ ├── aws_appmesh_virtual_node.json │ │ │ ├── aws_appmesh_virtual_router.json │ │ │ └── aws_appmesh_virtual_service.json │ │ │ ├── apprunner │ │ │ ├── aws_apprunner_auto_scaling_configuration_version.json │ │ │ ├── aws_apprunner_connection.json │ │ │ ├── aws_apprunner_custom_domain_association.json │ │ │ ├── aws_apprunner_default_auto_scaling_configuration_version.json │ │ │ ├── aws_apprunner_deployment.json │ │ │ ├── aws_apprunner_observability_configuration.json │ │ │ ├── aws_apprunner_service.json │ │ │ ├── aws_apprunner_vpc_connector.json │ │ │ └── aws_apprunner_vpc_ingress_connection.json │ │ │ ├── appstream │ │ │ ├── aws_appstream_directory_config.json │ │ │ ├── aws_appstream_fleet.json │ │ │ ├── aws_appstream_fleet_stack_association.json │ │ │ ├── aws_appstream_image_builder.json │ │ │ ├── aws_appstream_stack.json │ │ │ ├── aws_appstream_user.json │ │ │ └── aws_appstream_user_stack_association.json │ │ │ ├── appsync │ │ │ ├── aws_appsync_api_cache.json │ │ │ ├── aws_appsync_api_key.json │ │ │ ├── aws_appsync_datasource.json │ │ │ ├── aws_appsync_domain_name.json │ │ │ ├── aws_appsync_domain_name_api_association.json │ │ │ ├── aws_appsync_function.json │ │ │ ├── aws_appsync_graphql_api.json │ │ │ ├── aws_appsync_resolver.json │ │ │ ├── aws_appsync_source_api_association.json │ │ │ └── aws_appsync_type.json │ │ │ ├── aps │ │ │ ├── aws_prometheus_alert_manager_definition.json │ │ │ ├── aws_prometheus_rule_group_namespace.json │ │ │ ├── aws_prometheus_scraper.json │ │ │ ├── aws_prometheus_workspace.json │ │ │ └── aws_prometheus_workspace_configuration.json │ │ │ ├── athena │ │ │ ├── aws_athena_capacity_reservation.json │ │ │ ├── aws_athena_data_catalog.json │ │ │ ├── aws_athena_database.json │ │ │ ├── aws_athena_named_query.json │ │ │ ├── aws_athena_prepared_statement.json │ │ │ └── aws_athena_workgroup.json │ │ │ ├── auditmanager │ │ │ ├── aws_auditmanager_account_registration.json │ │ │ ├── aws_auditmanager_assessment.json │ │ │ ├── aws_auditmanager_assessment_delegation.json │ │ │ ├── aws_auditmanager_assessment_report.json │ │ │ ├── aws_auditmanager_control.json │ │ │ ├── aws_auditmanager_framework.json │ │ │ ├── aws_auditmanager_framework_share.json │ │ │ └── aws_auditmanager_organization_admin_account_registration.json │ │ │ ├── autoscaling-plans │ │ │ └── aws_autoscalingplans_scaling_plan.json │ │ │ ├── autoscaling │ │ │ ├── aws_autoscaling_attachment.json │ │ │ ├── aws_autoscaling_group.json │ │ │ ├── aws_autoscaling_group_tag.json │ │ │ ├── aws_autoscaling_lifecycle_hook.json │ │ │ ├── aws_autoscaling_notification.json │ │ │ ├── aws_autoscaling_policy.json │ │ │ ├── aws_autoscaling_schedule.json │ │ │ ├── aws_autoscaling_traffic_source_attachment.json │ │ │ └── aws_launch_configuration.json │ │ │ ├── aws_prometheus_query_logging_configuration.json │ │ │ ├── backend │ │ │ └── s3.json │ │ │ ├── backup │ │ │ ├── aws_backup_framework.json │ │ │ ├── aws_backup_global_settings.json │ │ │ ├── aws_backup_logically_air_gapped_vault.json │ │ │ ├── aws_backup_plan.json │ │ │ ├── aws_backup_region_settings.json │ │ │ ├── aws_backup_report_plan.json │ │ │ ├── aws_backup_restore_testing_plan.json │ │ │ ├── aws_backup_selection.json │ │ │ ├── aws_backup_vault.json │ │ │ ├── aws_backup_vault_lock_configuration.json │ │ │ ├── aws_backup_vault_notifications.json │ │ │ └── aws_backup_vault_policy.json │ │ │ ├── batch │ │ │ ├── aws_batch_compute_environment.json │ │ │ ├── aws_batch_job_definition.json │ │ │ ├── aws_batch_job_queue.json │ │ │ └── aws_batch_scheduling_policy.json │ │ │ ├── bcm-data-exports │ │ │ └── aws_bcmdataexports_export.json │ │ │ ├── bedrock │ │ │ ├── aws_bedrock_custom_model.json │ │ │ ├── aws_bedrock_guardrail.json │ │ │ ├── aws_bedrock_guardrail_version.json │ │ │ ├── aws_bedrock_inference_profile.json │ │ │ ├── aws_bedrock_model_invocation_logging_configuration.json │ │ │ ├── aws_bedrock_provisioned_model_throughput.json │ │ │ ├── aws_bedrockagent_agent.json │ │ │ ├── aws_bedrockagent_agent_action_group.json │ │ │ ├── aws_bedrockagent_agent_alias.json │ │ │ ├── aws_bedrockagent_agent_collaborator.json │ │ │ ├── aws_bedrockagent_agent_knowledge_base_association.json │ │ │ ├── aws_bedrockagent_data_source.json │ │ │ ├── aws_bedrockagent_knowledge_base.json │ │ │ └── aws_bedrockagent_prompt.json │ │ │ ├── budgets │ │ │ ├── aws_budgets_budget.json │ │ │ └── aws_budgets_budget_action.json │ │ │ ├── cassandra │ │ │ ├── aws_keyspaces_keyspace.json │ │ │ └── aws_keyspaces_table.json │ │ │ ├── ce │ │ │ ├── aws_ce_anomaly_monitor.json │ │ │ ├── aws_ce_anomaly_subscription.json │ │ │ ├── aws_ce_cost_allocation_tag.json │ │ │ └── aws_ce_cost_category.json │ │ │ ├── chatbot │ │ │ ├── aws_chatbot_slack_channel_configuration.json │ │ │ └── aws_chatbot_teams_channel_configuration.json │ │ │ ├── chime │ │ │ ├── aws_chime_voice_connector.json │ │ │ ├── aws_chime_voice_connector_group.json │ │ │ ├── aws_chime_voice_connector_logging.json │ │ │ ├── aws_chime_voice_connector_origination.json │ │ │ ├── aws_chime_voice_connector_streaming.json │ │ │ ├── aws_chime_voice_connector_termination.json │ │ │ ├── aws_chime_voice_connector_termination_credentials.json │ │ │ ├── aws_chimesdkmediapipelines_media_insights_pipeline_configuration.json │ │ │ ├── aws_chimesdkvoice_global_settings.json │ │ │ ├── aws_chimesdkvoice_sip_media_application.json │ │ │ ├── aws_chimesdkvoice_sip_rule.json │ │ │ └── aws_chimesdkvoice_voice_profile_domain.json │ │ │ ├── cleanrooms │ │ │ ├── aws_cleanrooms_collaboration.json │ │ │ ├── aws_cleanrooms_configured_table.json │ │ │ └── aws_cleanrooms_membership.json │ │ │ ├── cloud9 │ │ │ ├── aws_cloud9_environment_ec2.json │ │ │ └── aws_cloud9_environment_membership.json │ │ │ ├── cloudformation │ │ │ ├── aws_cloudcontrolapi_resource.json │ │ │ ├── aws_cloudformation_stack.json │ │ │ ├── aws_cloudformation_stack_instances.json │ │ │ ├── aws_cloudformation_stack_set.json │ │ │ ├── aws_cloudformation_stack_set_instance.json │ │ │ └── aws_cloudformation_type.json │ │ │ ├── cloudfront-keyvaluestore │ │ │ ├── aws_cloudfrontkeyvaluestore_key.json │ │ │ └── aws_cloudfrontkeyvaluestore_keys_exclusive.json │ │ │ ├── cloudfront │ │ │ ├── aws_cloudfront_cache_policy.json │ │ │ ├── aws_cloudfront_continuous_deployment_policy.json │ │ │ ├── aws_cloudfront_distribution.json │ │ │ ├── aws_cloudfront_field_level_encryption_config.json │ │ │ ├── aws_cloudfront_field_level_encryption_profile.json │ │ │ ├── aws_cloudfront_function.json │ │ │ ├── aws_cloudfront_key_group.json │ │ │ ├── aws_cloudfront_key_value_store.json │ │ │ ├── aws_cloudfront_monitoring_subscription.json │ │ │ ├── aws_cloudfront_origin_access_control.json │ │ │ ├── aws_cloudfront_origin_access_identity.json │ │ │ ├── aws_cloudfront_origin_request_policy.json │ │ │ ├── aws_cloudfront_public_key.json │ │ │ ├── aws_cloudfront_realtime_log_config.json │ │ │ ├── aws_cloudfront_response_headers_policy.json │ │ │ └── aws_cloudfront_vpc_origin.json │ │ │ ├── cloudhsm │ │ │ ├── aws_cloudhsm_v2_cluster.json │ │ │ └── aws_cloudhsm_v2_hsm.json │ │ │ ├── cloudsearch │ │ │ ├── aws_cloudsearch_domain.json │ │ │ └── aws_cloudsearch_domain_service_access_policy.json │ │ │ ├── cloudtrail │ │ │ ├── aws_cloudtrail.json │ │ │ ├── aws_cloudtrail_event_data_store.json │ │ │ └── aws_cloudtrail_organization_delegated_admin_account.json │ │ │ ├── cloudwatch │ │ │ ├── aws_cloudwatch_composite_alarm.json │ │ │ ├── aws_cloudwatch_contributor_insight_rule.json │ │ │ ├── aws_cloudwatch_contributor_managed_insight_rule.json │ │ │ ├── aws_cloudwatch_dashboard.json │ │ │ ├── aws_cloudwatch_event_api_destination.json │ │ │ ├── aws_cloudwatch_event_archive.json │ │ │ ├── aws_cloudwatch_event_bus.json │ │ │ ├── aws_cloudwatch_event_connection.json │ │ │ ├── aws_cloudwatch_event_permission.json │ │ │ ├── aws_cloudwatch_metric_alarm.json │ │ │ └── aws_cloudwatch_metric_stream.json │ │ │ ├── codeartifact │ │ │ ├── aws_codeartifact_domain.json │ │ │ ├── aws_codeartifact_domain_permissions_policy.json │ │ │ ├── aws_codeartifact_repository.json │ │ │ └── aws_codeartifact_repository_permissions_policy.json │ │ │ ├── codebuild │ │ │ ├── aws_codebuild_fleet.json │ │ │ ├── aws_codebuild_project.json │ │ │ ├── aws_codebuild_report_group.json │ │ │ ├── aws_codebuild_resource_policy.json │ │ │ ├── aws_codebuild_source_credential.json │ │ │ └── aws_codebuild_webhook.json │ │ │ ├── codecommit │ │ │ ├── aws_codecommit_approval_rule_template.json │ │ │ ├── aws_codecommit_approval_rule_template_association.json │ │ │ ├── aws_codecommit_repository.json │ │ │ └── aws_codecommit_trigger.json │ │ │ ├── codeconnections │ │ │ ├── aws_codeconnections_connection.json │ │ │ └── aws_codeconnections_host.json │ │ │ ├── codedeploy │ │ │ ├── aws_codedeploy_app.json │ │ │ ├── aws_codedeploy_deployment_config.json │ │ │ └── aws_codedeploy_deployment_group.json │ │ │ ├── codeguru-profiler │ │ │ └── aws_codeguruprofiler_profiling_group.json │ │ │ ├── codeguru-reviewer │ │ │ └── aws_codegurureviewer_repository_association.json │ │ │ ├── codepipeline │ │ │ ├── aws_codepipeline.json │ │ │ ├── aws_codepipeline_custom_action_type.json │ │ │ └── aws_codepipeline_webhook.json │ │ │ ├── codestar-connections │ │ │ ├── aws_codestarconnections_connection.json │ │ │ └── aws_codestarconnections_host.json │ │ │ ├── codestar-notifications │ │ │ └── aws_codestarnotifications_notification_rule.json │ │ │ ├── cognito-idp │ │ │ ├── aws_cognito_identity_pool.json │ │ │ ├── aws_cognito_identity_pool_provider_principal_tag.json │ │ │ ├── aws_cognito_identity_pool_roles_attachment.json │ │ │ ├── aws_cognito_identity_provider.json │ │ │ ├── aws_cognito_managed_user_pool_client.json │ │ │ ├── aws_cognito_resource_server.json │ │ │ ├── aws_cognito_risk_configuration.json │ │ │ ├── aws_cognito_user.json │ │ │ ├── aws_cognito_user_group.json │ │ │ ├── aws_cognito_user_in_group.json │ │ │ ├── aws_cognito_user_pool.json │ │ │ ├── aws_cognito_user_pool_client.json │ │ │ ├── aws_cognito_user_pool_domain.json │ │ │ └── aws_cognito_user_pool_ui_customization.json │ │ │ ├── comprehend │ │ │ ├── aws_comprehend_document_classifier.json │ │ │ └── aws_comprehend_entity_recognizer.json │ │ │ ├── compute-optimizer │ │ │ ├── aws_computeoptimizer_enrollment_status.json │ │ │ └── aws_computeoptimizer_recommendation_preferences.json │ │ │ ├── config │ │ │ ├── aws_config_aggregate_authorization.json │ │ │ ├── aws_config_config_rule.json │ │ │ ├── aws_config_configuration_aggregator.json │ │ │ ├── aws_config_configuration_recorder.json │ │ │ ├── aws_config_configuration_recorder_status.json │ │ │ ├── aws_config_conformance_pack.json │ │ │ ├── aws_config_delivery_channel.json │ │ │ ├── aws_config_organization_conformance_pack.json │ │ │ ├── aws_config_organization_custom_policy_rule.json │ │ │ ├── aws_config_organization_custom_rule.json │ │ │ ├── aws_config_organization_managed_rule.json │ │ │ ├── aws_config_remediation_configuration.json │ │ │ └── aws_config_retention_configuration.json │ │ │ ├── connect │ │ │ ├── aws_connect_bot_association.json │ │ │ ├── aws_connect_contact_flow.json │ │ │ ├── aws_connect_contact_flow_module.json │ │ │ ├── aws_connect_hours_of_operation.json │ │ │ ├── aws_connect_instance.json │ │ │ ├── aws_connect_instance_storage_config.json │ │ │ ├── aws_connect_lambda_function_association.json │ │ │ ├── aws_connect_phone_number.json │ │ │ ├── aws_connect_queue.json │ │ │ ├── aws_connect_quick_connect.json │ │ │ ├── aws_connect_routing_profile.json │ │ │ ├── aws_connect_security_profile.json │ │ │ ├── aws_connect_user.json │ │ │ ├── aws_connect_user_hierarchy_group.json │ │ │ ├── aws_connect_user_hierarchy_structure.json │ │ │ └── aws_connect_vocabulary.json │ │ │ ├── controltower │ │ │ ├── aws_controltower_control.json │ │ │ └── aws_controltower_landing_zone.json │ │ │ ├── cost-optimization-hub │ │ │ ├── aws_costoptimizationhub_enrollment_status.json │ │ │ └── aws_costoptimizationhub_preferences.json │ │ │ ├── cur │ │ │ └── aws_cur_report_definition.json │ │ │ ├── dataexchange │ │ │ ├── aws_dataexchange_data_set.json │ │ │ ├── aws_dataexchange_event_action.json │ │ │ ├── aws_dataexchange_revision.json │ │ │ └── aws_dataexchange_revision_assets.json │ │ │ ├── datapipeline │ │ │ ├── aws_datapipeline_pipeline.json │ │ │ └── aws_datapipeline_pipeline_definition.json │ │ │ ├── datasync │ │ │ ├── aws_datasync_agent.json │ │ │ ├── aws_datasync_location_azure_blob.json │ │ │ ├── aws_datasync_location_efs.json │ │ │ ├── aws_datasync_location_fsx_lustre_file_system.json │ │ │ ├── aws_datasync_location_fsx_ontap_file_system.json │ │ │ ├── aws_datasync_location_fsx_openzfs_file_system.json │ │ │ ├── aws_datasync_location_fsx_windows_file_system.json │ │ │ ├── aws_datasync_location_hdfs.json │ │ │ ├── aws_datasync_location_nfs.json │ │ │ ├── aws_datasync_location_object_storage.json │ │ │ ├── aws_datasync_location_s3.json │ │ │ ├── aws_datasync_location_smb.json │ │ │ └── aws_datasync_task.json │ │ │ ├── datazone │ │ │ ├── aws_datazone_asset_type.json │ │ │ ├── aws_datazone_domain.json │ │ │ ├── aws_datazone_environment.json │ │ │ ├── aws_datazone_environment_blueprint_configuration.json │ │ │ ├── aws_datazone_environment_profile.json │ │ │ ├── aws_datazone_form_type.json │ │ │ ├── aws_datazone_glossary.json │ │ │ ├── aws_datazone_glossary_term.json │ │ │ ├── aws_datazone_project.json │ │ │ └── aws_datazone_user_profile.json │ │ │ ├── dax │ │ │ ├── aws_dax_cluster.json │ │ │ ├── aws_dax_parameter_group.json │ │ │ └── aws_dax_subnet_group.json │ │ │ ├── detective │ │ │ ├── aws_detective_graph.json │ │ │ ├── aws_detective_invitation_accepter.json │ │ │ ├── aws_detective_member.json │ │ │ ├── aws_detective_organization_admin_account.json │ │ │ └── aws_detective_organization_configuration.json │ │ │ ├── devicefarm │ │ │ ├── aws_devicefarm_device_pool.json │ │ │ ├── aws_devicefarm_instance_profile.json │ │ │ ├── aws_devicefarm_network_profile.json │ │ │ ├── aws_devicefarm_project.json │ │ │ └── aws_devicefarm_upload.json │ │ │ ├── devops-guru │ │ │ ├── aws_devopsguru_event_sources_config.json │ │ │ ├── aws_devopsguru_notification_channel.json │ │ │ ├── aws_devopsguru_resource_collection.json │ │ │ └── aws_devopsguru_service_integration.json │ │ │ ├── directconnect │ │ │ ├── aws_dx_bgp_peer.json │ │ │ ├── aws_dx_connection.json │ │ │ ├── aws_dx_connection_association.json │ │ │ ├── aws_dx_connection_confirmation.json │ │ │ ├── aws_dx_gateway.json │ │ │ ├── aws_dx_gateway_association.json │ │ │ ├── aws_dx_gateway_association_proposal.json │ │ │ ├── aws_dx_hosted_connection.json │ │ │ ├── aws_dx_hosted_private_virtual_interface.json │ │ │ ├── aws_dx_hosted_private_virtual_interface_accepter.json │ │ │ ├── aws_dx_hosted_public_virtual_interface.json │ │ │ ├── aws_dx_hosted_public_virtual_interface_accepter.json │ │ │ ├── aws_dx_hosted_transit_virtual_interface.json │ │ │ ├── aws_dx_hosted_transit_virtual_interface_accepter.json │ │ │ ├── aws_dx_lag.json │ │ │ ├── aws_dx_macsec_key_association.json │ │ │ ├── aws_dx_private_virtual_interface.json │ │ │ ├── aws_dx_public_virtual_interface.json │ │ │ └── aws_dx_transit_virtual_interface.json │ │ │ ├── directoryservice │ │ │ ├── aws_directory_service_conditional_forwarder.json │ │ │ ├── aws_directory_service_directory.json │ │ │ ├── aws_directory_service_log_subscription.json │ │ │ ├── aws_directory_service_radius_settings.json │ │ │ ├── aws_directory_service_region.json │ │ │ ├── aws_directory_service_shared_directory.json │ │ │ ├── aws_directory_service_shared_directory_accepter.json │ │ │ └── aws_directory_service_trust.json │ │ │ ├── dlm │ │ │ └── aws_dlm_lifecycle_policy.json │ │ │ ├── dms │ │ │ ├── aws_dms_certificate.json │ │ │ ├── aws_dms_endpoint.json │ │ │ ├── aws_dms_event_subscription.json │ │ │ ├── aws_dms_replication_config.json │ │ │ ├── aws_dms_replication_instance.json │ │ │ ├── aws_dms_replication_subnet_group.json │ │ │ ├── aws_dms_replication_task.json │ │ │ └── aws_dms_s3_endpoint.json │ │ │ ├── docdb-elastic │ │ │ └── aws_docdbelastic_cluster.json │ │ │ ├── drs │ │ │ └── aws_drs_replication_configuration_template.json │ │ │ ├── dsql │ │ │ ├── aws_dsql_cluster.json │ │ │ └── aws_dsql_cluster_peering.json │ │ │ ├── dynamodb │ │ │ ├── aws_dynamodb_contributor_insights.json │ │ │ ├── aws_dynamodb_global_table.json │ │ │ ├── aws_dynamodb_kinesis_streaming_destination.json │ │ │ ├── aws_dynamodb_resource_policy.json │ │ │ ├── aws_dynamodb_table.json │ │ │ ├── aws_dynamodb_table_export.json │ │ │ ├── aws_dynamodb_table_item.json │ │ │ ├── aws_dynamodb_table_replica.json │ │ │ └── aws_dynamodb_tag.json │ │ │ ├── ec2 │ │ │ ├── aws_ami.json │ │ │ ├── aws_ami_copy.json │ │ │ ├── aws_ami_from_instance.json │ │ │ ├── aws_ami_launch_permission.json │ │ │ ├── aws_customer_gateway.json │ │ │ ├── aws_default_network_acl.json │ │ │ ├── aws_default_route_table.json │ │ │ ├── aws_default_security_group.json │ │ │ ├── aws_default_subnet.json │ │ │ ├── aws_default_vpc.json │ │ │ ├── aws_default_vpc_dhcp_options.json │ │ │ ├── aws_ebs_default_kms_key.json │ │ │ ├── aws_ebs_encryption_by_default.json │ │ │ ├── aws_ebs_fast_snapshot_restore.json │ │ │ ├── aws_ebs_snapshot.json │ │ │ ├── aws_ebs_snapshot_block_public_access.json │ │ │ ├── aws_ebs_snapshot_copy.json │ │ │ ├── aws_ebs_snapshot_import.json │ │ │ ├── aws_ebs_volume.json │ │ │ ├── aws_ec2_availability_zone_group.json │ │ │ ├── aws_ec2_capacity_block_reservation.json │ │ │ ├── aws_ec2_capacity_reservation.json │ │ │ ├── aws_ec2_carrier_gateway.json │ │ │ ├── aws_ec2_client_vpn_authorization_rule.json │ │ │ ├── aws_ec2_client_vpn_endpoint.json │ │ │ ├── aws_ec2_client_vpn_network_association.json │ │ │ ├── aws_ec2_client_vpn_route.json │ │ │ ├── aws_ec2_default_credit_specification.json │ │ │ ├── aws_ec2_fleet.json │ │ │ ├── aws_ec2_host.json │ │ │ ├── aws_ec2_image_block_public_access.json │ │ │ ├── aws_ec2_instance_connect_endpoint.json │ │ │ ├── aws_ec2_instance_metadata_defaults.json │ │ │ ├── aws_ec2_instance_state.json │ │ │ ├── aws_ec2_local_gateway_route.json │ │ │ ├── aws_ec2_local_gateway_route_table_vpc_association.json │ │ │ ├── aws_ec2_managed_prefix_list.json │ │ │ ├── aws_ec2_managed_prefix_list_entry.json │ │ │ ├── aws_ec2_network_insights_analysis.json │ │ │ ├── aws_ec2_network_insights_path.json │ │ │ ├── aws_ec2_serial_console_access.json │ │ │ ├── aws_ec2_subnet_cidr_reservation.json │ │ │ ├── aws_ec2_tag.json │ │ │ ├── aws_ec2_traffic_mirror_filter.json │ │ │ ├── aws_ec2_traffic_mirror_filter_rule.json │ │ │ ├── aws_ec2_traffic_mirror_session.json │ │ │ ├── aws_ec2_traffic_mirror_target.json │ │ │ ├── aws_ec2_transit_gateway.json │ │ │ ├── aws_ec2_transit_gateway_connect.json │ │ │ ├── aws_ec2_transit_gateway_connect_peer.json │ │ │ ├── aws_ec2_transit_gateway_default_route_table_association.json │ │ │ ├── aws_ec2_transit_gateway_default_route_table_propagation.json │ │ │ ├── aws_ec2_transit_gateway_multicast_domain.json │ │ │ ├── aws_ec2_transit_gateway_multicast_domain_association.json │ │ │ ├── aws_ec2_transit_gateway_multicast_group_member.json │ │ │ ├── aws_ec2_transit_gateway_multicast_group_source.json │ │ │ ├── aws_ec2_transit_gateway_peering_attachment.json │ │ │ ├── aws_ec2_transit_gateway_peering_attachment_accepter.json │ │ │ ├── aws_ec2_transit_gateway_policy_table.json │ │ │ ├── aws_ec2_transit_gateway_policy_table_association.json │ │ │ ├── aws_ec2_transit_gateway_prefix_list_reference.json │ │ │ ├── aws_ec2_transit_gateway_route.json │ │ │ ├── aws_ec2_transit_gateway_route_table.json │ │ │ ├── aws_ec2_transit_gateway_route_table_association.json │ │ │ ├── aws_ec2_transit_gateway_route_table_propagation.json │ │ │ ├── aws_ec2_transit_gateway_vpc_attachment.json │ │ │ ├── aws_ec2_transit_gateway_vpc_attachment_accepter.json │ │ │ ├── aws_egress_only_internet_gateway.json │ │ │ ├── aws_eip.json │ │ │ ├── aws_eip_association.json │ │ │ ├── aws_eip_domain_name.json │ │ │ ├── aws_flow_log.json │ │ │ ├── aws_instance.json │ │ │ ├── aws_internet_gateway.json │ │ │ ├── aws_internet_gateway_attachment.json │ │ │ ├── aws_key_pair.json │ │ │ ├── aws_launch_template.json │ │ │ ├── aws_main_route_table_association.json │ │ │ ├── aws_nat_gateway.json │ │ │ ├── aws_network_acl.json │ │ │ ├── aws_network_acl_association.json │ │ │ ├── aws_network_acl_rule.json │ │ │ ├── aws_network_interface.json │ │ │ ├── aws_network_interface_attachment.json │ │ │ ├── aws_network_interface_permission.json │ │ │ ├── aws_network_interface_sg_attachment.json │ │ │ ├── aws_placement_group.json │ │ │ ├── aws_route.json │ │ │ ├── aws_route_table.json │ │ │ ├── aws_route_table_association.json │ │ │ ├── aws_security_group.json │ │ │ ├── aws_security_group_rule.json │ │ │ ├── aws_snapshot_create_volume_permission.json │ │ │ ├── aws_spot_datafeed_subscription.json │ │ │ ├── aws_spot_fleet_request.json │ │ │ ├── aws_spot_instance_request.json │ │ │ ├── aws_subnet.json │ │ │ ├── aws_verifiedaccess_endpoint.json │ │ │ ├── aws_verifiedaccess_group.json │ │ │ ├── aws_verifiedaccess_instance.json │ │ │ ├── aws_verifiedaccess_instance_logging_configuration.json │ │ │ ├── aws_verifiedaccess_trust_provider.json │ │ │ ├── aws_volume_attachment.json │ │ │ ├── aws_vpc.json │ │ │ ├── aws_vpc_block_public_access_exclusion.json │ │ │ ├── aws_vpc_block_public_access_options.json │ │ │ ├── aws_vpc_dhcp_options.json │ │ │ ├── aws_vpc_dhcp_options_association.json │ │ │ ├── aws_vpc_endpoint.json │ │ │ ├── aws_vpc_endpoint_connection_accepter.json │ │ │ ├── aws_vpc_endpoint_connection_notification.json │ │ │ ├── aws_vpc_endpoint_policy.json │ │ │ ├── aws_vpc_endpoint_private_dns.json │ │ │ ├── aws_vpc_endpoint_route_table_association.json │ │ │ ├── aws_vpc_endpoint_security_group_association.json │ │ │ ├── aws_vpc_endpoint_service.json │ │ │ ├── aws_vpc_endpoint_service_allowed_principal.json │ │ │ ├── aws_vpc_endpoint_service_private_dns_verification.json │ │ │ ├── aws_vpc_endpoint_subnet_association.json │ │ │ ├── aws_vpc_ipam.json │ │ │ ├── aws_vpc_ipam_organization_admin_account.json │ │ │ ├── aws_vpc_ipam_pool.json │ │ │ ├── aws_vpc_ipam_pool_cidr.json │ │ │ ├── aws_vpc_ipam_pool_cidr_allocation.json │ │ │ ├── aws_vpc_ipam_preview_next_cidr.json │ │ │ ├── aws_vpc_ipam_resource_discovery.json │ │ │ ├── aws_vpc_ipam_resource_discovery_association.json │ │ │ ├── aws_vpc_ipam_scope.json │ │ │ ├── aws_vpc_ipv4_cidr_block_association.json │ │ │ ├── aws_vpc_ipv6_cidr_block_association.json │ │ │ ├── aws_vpc_network_performance_metric_subscription.json │ │ │ ├── aws_vpc_peering_connection.json │ │ │ ├── aws_vpc_peering_connection_accepter.json │ │ │ ├── aws_vpc_peering_connection_options.json │ │ │ ├── aws_vpc_route_server.json │ │ │ ├── aws_vpc_route_server_endpoint.json │ │ │ ├── aws_vpc_route_server_peer.json │ │ │ ├── aws_vpc_route_server_propagation.json │ │ │ ├── aws_vpc_route_server_vpc_association.json │ │ │ ├── aws_vpc_security_group_egress_rule.json │ │ │ ├── aws_vpc_security_group_ingress_rule.json │ │ │ ├── aws_vpc_security_group_vpc_association.json │ │ │ ├── aws_vpn_connection.json │ │ │ ├── aws_vpn_connection_route.json │ │ │ ├── aws_vpn_gateway.json │ │ │ ├── aws_vpn_gateway_attachment.json │ │ │ └── aws_vpn_gateway_route_propagation.json │ │ │ ├── ecr-public │ │ │ ├── aws_ecrpublic_repository.json │ │ │ └── aws_ecrpublic_repository_policy.json │ │ │ ├── ecr │ │ │ ├── aws_ecr_account_setting.json │ │ │ ├── aws_ecr_lifecycle_policy.json │ │ │ ├── aws_ecr_pull_through_cache_rule.json │ │ │ ├── aws_ecr_registry_policy.json │ │ │ ├── aws_ecr_registry_scanning_configuration.json │ │ │ ├── aws_ecr_replication_configuration.json │ │ │ ├── aws_ecr_repository.json │ │ │ ├── aws_ecr_repository_creation_template.json │ │ │ └── aws_ecr_repository_policy.json │ │ │ ├── ecs │ │ │ ├── aws_ecs_account_setting_default.json │ │ │ ├── aws_ecs_capacity_provider.json │ │ │ ├── aws_ecs_cluster.json │ │ │ ├── aws_ecs_cluster_capacity_providers.json │ │ │ ├── aws_ecs_service.json │ │ │ ├── aws_ecs_tag.json │ │ │ ├── aws_ecs_task_definition.json │ │ │ └── aws_ecs_task_set.json │ │ │ ├── eks │ │ │ ├── aws_eks_access_entry.json │ │ │ ├── aws_eks_access_policy_association.json │ │ │ ├── aws_eks_addon.json │ │ │ ├── aws_eks_cluster.json │ │ │ ├── aws_eks_fargate_profile.json │ │ │ ├── aws_eks_identity_provider_config.json │ │ │ ├── aws_eks_node_group.json │ │ │ └── aws_eks_pod_identity_association.json │ │ │ ├── elasticache │ │ │ ├── aws_elasticache_cluster.json │ │ │ ├── aws_elasticache_global_replication_group.json │ │ │ ├── aws_elasticache_parameter_group.json │ │ │ ├── aws_elasticache_replication_group.json │ │ │ ├── aws_elasticache_reserved_cache_node.json │ │ │ ├── aws_elasticache_serverless_cache.json │ │ │ ├── aws_elasticache_subnet_group.json │ │ │ ├── aws_elasticache_user.json │ │ │ ├── aws_elasticache_user_group.json │ │ │ └── aws_elasticache_user_group_association.json │ │ │ ├── elasticbeanstalk │ │ │ ├── aws_elastic_beanstalk_application.json │ │ │ ├── aws_elastic_beanstalk_application_version.json │ │ │ ├── aws_elastic_beanstalk_configuration_template.json │ │ │ └── aws_elastic_beanstalk_environment.json │ │ │ ├── elasticfilesystem │ │ │ ├── aws_efs_access_point.json │ │ │ ├── aws_efs_backup_policy.json │ │ │ ├── aws_efs_file_system.json │ │ │ ├── aws_efs_file_system_policy.json │ │ │ ├── aws_efs_mount_target.json │ │ │ └── aws_efs_replication_configuration.json │ │ │ ├── elasticloadbalancing │ │ │ ├── aws_app_cookie_stickiness_policy.json │ │ │ ├── aws_elastic_beanstalk_application.json │ │ │ ├── aws_elb.json │ │ │ ├── aws_elb_attachment.json │ │ │ ├── aws_lb.json │ │ │ ├── aws_lb_cookie_stickiness_policy.json │ │ │ ├── aws_lb_listener.json │ │ │ ├── aws_lb_listener_certificate.json │ │ │ ├── aws_lb_listener_rule.json │ │ │ ├── aws_lb_ssl_negotiation_policy.json │ │ │ ├── aws_lb_target_group.json │ │ │ ├── aws_lb_target_group_attachment.json │ │ │ ├── aws_lb_trust_store.json │ │ │ ├── aws_lb_trust_store_revocation.json │ │ │ ├── aws_load_balancer_backend_server_policy.json │ │ │ ├── aws_load_balancer_listener_policy.json │ │ │ ├── aws_load_balancer_policy.json │ │ │ └── aws_proxy_protocol_policy.json │ │ │ ├── elasticmapreduce │ │ │ ├── aws_emr_block_public_access_configuration.json │ │ │ ├── aws_emr_cluster.json │ │ │ ├── aws_emr_instance_fleet.json │ │ │ ├── aws_emr_instance_group.json │ │ │ ├── aws_emr_managed_scaling_policy.json │ │ │ ├── aws_emr_security_configuration.json │ │ │ ├── aws_emr_studio.json │ │ │ ├── aws_emr_studio_session_mapping.json │ │ │ ├── aws_emrcontainers_job_template.json │ │ │ ├── aws_emrcontainers_virtual_cluster.json │ │ │ └── aws_emrserverless_application.json │ │ │ ├── elastictranscoder │ │ │ ├── aws_elastictranscoder_pipeline.json │ │ │ └── aws_elastictranscoder_preset.json │ │ │ ├── es │ │ │ ├── aws_elasticsearch_domain.json │ │ │ ├── aws_elasticsearch_domain_policy.json │ │ │ ├── aws_elasticsearch_domain_saml_options.json │ │ │ ├── aws_elasticsearch_vpc_endpoint.json │ │ │ ├── aws_opensearch_authorize_vpc_endpoint_access.json │ │ │ ├── aws_opensearch_domain_saml_options.json │ │ │ ├── aws_opensearch_inbound_connection_accepter.json │ │ │ ├── aws_opensearch_outbound_connection.json │ │ │ ├── aws_opensearch_package.json │ │ │ ├── aws_opensearch_package_association.json │ │ │ └── aws_opensearch_vpc_endpoint.json │ │ │ ├── events │ │ │ ├── aws_cloudwatch_event_archive.json │ │ │ ├── aws_cloudwatch_event_bus_policy.json │ │ │ ├── aws_cloudwatch_event_connection.json │ │ │ ├── aws_cloudwatch_event_endpoint.json │ │ │ ├── aws_cloudwatch_event_rule.json │ │ │ └── aws_cloudwatch_event_target.json │ │ │ ├── evidently │ │ │ ├── aws_evidently_feature.json │ │ │ ├── aws_evidently_launch.json │ │ │ ├── aws_evidently_project.json │ │ │ └── aws_evidently_segment.json │ │ │ ├── finspace │ │ │ ├── aws_finspace_kx_cluster.json │ │ │ ├── aws_finspace_kx_database.json │ │ │ ├── aws_finspace_kx_dataview.json │ │ │ ├── aws_finspace_kx_environment.json │ │ │ ├── aws_finspace_kx_scaling_group.json │ │ │ ├── aws_finspace_kx_user.json │ │ │ └── aws_finspace_kx_volume.json │ │ │ ├── firehose │ │ │ ├── aws_kinesis_firehose_delivery_stream.json │ │ │ ├── aws_kinesis_stream.json │ │ │ └── aws_kinesis_video_stream.json │ │ │ ├── fis │ │ │ └── aws_fis_experiment_template.json │ │ │ ├── fms │ │ │ ├── aws_fms_admin_account.json │ │ │ ├── aws_fms_policy.json │ │ │ └── aws_fms_resource_set.json │ │ │ ├── fsx │ │ │ ├── aws_fsx_backup.json │ │ │ ├── aws_fsx_data_repository_association.json │ │ │ ├── aws_fsx_file_cache.json │ │ │ ├── aws_fsx_lustre_file_system.json │ │ │ ├── aws_fsx_ontap_file_system.json │ │ │ ├── aws_fsx_ontap_storage_virtual_machine.json │ │ │ ├── aws_fsx_ontap_volume.json │ │ │ ├── aws_fsx_openzfs_file_system.json │ │ │ ├── aws_fsx_openzfs_snapshot.json │ │ │ ├── aws_fsx_openzfs_volume.json │ │ │ └── aws_fsx_windows_file_system.json │ │ │ ├── gamelift │ │ │ ├── aws_gamelift_alias.json │ │ │ ├── aws_gamelift_build.json │ │ │ ├── aws_gamelift_fleet.json │ │ │ ├── aws_gamelift_game_server_group.json │ │ │ ├── aws_gamelift_game_session_queue.json │ │ │ └── aws_gamelift_script.json │ │ │ ├── geo │ │ │ ├── aws_location_geofence_collection.json │ │ │ ├── aws_location_map.json │ │ │ ├── aws_location_place_index.json │ │ │ ├── aws_location_route_calculator.json │ │ │ ├── aws_location_tracker.json │ │ │ └── aws_location_tracker_association.json │ │ │ ├── glacier │ │ │ ├── aws_glacier_vault.json │ │ │ └── aws_glacier_vault_lock.json │ │ │ ├── globalaccelerator │ │ │ ├── aws_globalaccelerator_accelerator.json │ │ │ ├── aws_globalaccelerator_cross_account_attachment.json │ │ │ ├── aws_globalaccelerator_custom_routing_accelerator.json │ │ │ ├── aws_globalaccelerator_custom_routing_endpoint_group.json │ │ │ ├── aws_globalaccelerator_custom_routing_listener.json │ │ │ ├── aws_globalaccelerator_endpoint_group.json │ │ │ └── aws_globalaccelerator_listener.json │ │ │ ├── glue │ │ │ ├── aws_glue_catalog_database.json │ │ │ ├── aws_glue_catalog_table.json │ │ │ ├── aws_glue_catalog_table_optimizer.json │ │ │ ├── aws_glue_classifier.json │ │ │ ├── aws_glue_connection.json │ │ │ ├── aws_glue_crawler.json │ │ │ ├── aws_glue_data_catalog_encryption_settings.json │ │ │ ├── aws_glue_data_quality_ruleset.json │ │ │ ├── aws_glue_dev_endpoint.json │ │ │ ├── aws_glue_job.json │ │ │ ├── aws_glue_ml_transform.json │ │ │ ├── aws_glue_partition.json │ │ │ ├── aws_glue_partition_index.json │ │ │ ├── aws_glue_registry.json │ │ │ ├── aws_glue_resource_policy.json │ │ │ ├── aws_glue_schema.json │ │ │ ├── aws_glue_security_configuration.json │ │ │ ├── aws_glue_trigger.json │ │ │ ├── aws_glue_user_defined_function.json │ │ │ └── aws_glue_workflow.json │ │ │ ├── grafana │ │ │ ├── aws_grafana_license_association.json │ │ │ ├── aws_grafana_role_association.json │ │ │ ├── aws_grafana_workspace.json │ │ │ ├── aws_grafana_workspace_api_key.json │ │ │ ├── aws_grafana_workspace_saml_configuration.json │ │ │ ├── aws_grafana_workspace_service_account.json │ │ │ └── aws_grafana_workspace_service_account_token.json │ │ │ ├── guardduty │ │ │ ├── aws_guardduty_detector.json │ │ │ ├── aws_guardduty_detector_feature.json │ │ │ ├── aws_guardduty_filter.json │ │ │ ├── aws_guardduty_invite_accepter.json │ │ │ ├── aws_guardduty_ipset.json │ │ │ ├── aws_guardduty_malware_protection_plan.json │ │ │ ├── aws_guardduty_member.json │ │ │ ├── aws_guardduty_member_detector_feature.json │ │ │ ├── aws_guardduty_organization_admin_account.json │ │ │ ├── aws_guardduty_organization_configuration.json │ │ │ ├── aws_guardduty_organization_configuration_feature.json │ │ │ ├── aws_guardduty_publishing_destination.json │ │ │ └── aws_guardduty_threatintelset.json │ │ │ ├── iam │ │ │ ├── aws_iam_access_key.json │ │ │ ├── aws_iam_account_alias.json │ │ │ ├── aws_iam_account_password_policy.json │ │ │ ├── aws_iam_group.json │ │ │ ├── aws_iam_group_membership.json │ │ │ ├── aws_iam_group_policies_exclusive.json │ │ │ ├── aws_iam_group_policy.json │ │ │ ├── aws_iam_group_policy_attachment.json │ │ │ ├── aws_iam_group_policy_attachments_exclusive.json │ │ │ ├── aws_iam_instance_profile.json │ │ │ ├── aws_iam_openid_connect_provider.json │ │ │ ├── aws_iam_organizations_features.json │ │ │ ├── aws_iam_policy.json │ │ │ ├── aws_iam_policy_attachment.json │ │ │ ├── aws_iam_role.json │ │ │ ├── aws_iam_role_policies_exclusive.json │ │ │ ├── aws_iam_role_policy.json │ │ │ ├── aws_iam_role_policy_attachment.json │ │ │ ├── aws_iam_role_policy_attachments_exclusive.json │ │ │ ├── aws_iam_saml_provider.json │ │ │ ├── aws_iam_security_token_service_preferences.json │ │ │ ├── aws_iam_server_certificate.json │ │ │ ├── aws_iam_service_linked_role.json │ │ │ ├── aws_iam_service_specific_credential.json │ │ │ ├── aws_iam_signing_certificate.json │ │ │ ├── aws_iam_user.json │ │ │ ├── aws_iam_user_group_membership.json │ │ │ ├── aws_iam_user_login_profile.json │ │ │ ├── aws_iam_user_policies_exclusive.json │ │ │ ├── aws_iam_user_policy.json │ │ │ ├── aws_iam_user_policy_attachment.json │ │ │ ├── aws_iam_user_policy_attachments_exclusive.json │ │ │ ├── aws_iam_user_ssh_key.json │ │ │ └── aws_iam_virtual_mfa_device.json │ │ │ ├── identitystore │ │ │ ├── aws_identitystore_group.json │ │ │ ├── aws_identitystore_group_membership.json │ │ │ └── aws_identitystore_user.json │ │ │ ├── imagebuilder │ │ │ ├── aws_imagebuilder_component.json │ │ │ ├── aws_imagebuilder_container_recipe.json │ │ │ ├── aws_imagebuilder_distribution_configuration.json │ │ │ ├── aws_imagebuilder_image.json │ │ │ ├── aws_imagebuilder_image_pipeline.json │ │ │ ├── aws_imagebuilder_image_recipe.json │ │ │ ├── aws_imagebuilder_infrastructure_configuration.json │ │ │ ├── aws_imagebuilder_lifecycle_policy.json │ │ │ └── aws_imagebuilder_workflow.json │ │ │ ├── inspector │ │ │ ├── aws_inspector_assessment_target.json │ │ │ ├── aws_inspector_assessment_template.json │ │ │ └── aws_inspector_resource_group.json │ │ │ ├── inspector2 │ │ │ ├── aws_inspector2_delegated_admin_account.json │ │ │ ├── aws_inspector2_enabler.json │ │ │ ├── aws_inspector2_filter.json │ │ │ ├── aws_inspector2_member_association.json │ │ │ └── aws_inspector2_organization_configuration.json │ │ │ ├── internetmonitor │ │ │ └── aws_internetmonitor_monitor.json │ │ │ ├── iot │ │ │ ├── aws_iot_authorizer.json │ │ │ ├── aws_iot_billing_group.json │ │ │ ├── aws_iot_ca_certificate.json │ │ │ ├── aws_iot_certificate.json │ │ │ ├── aws_iot_domain_configuration.json │ │ │ ├── aws_iot_event_configurations.json │ │ │ ├── aws_iot_indexing_configuration.json │ │ │ ├── aws_iot_logging_options.json │ │ │ ├── aws_iot_policy.json │ │ │ ├── aws_iot_policy_attachment.json │ │ │ ├── aws_iot_provisioning_template.json │ │ │ ├── aws_iot_role_alias.json │ │ │ ├── aws_iot_thing.json │ │ │ ├── aws_iot_thing_group.json │ │ │ ├── aws_iot_thing_group_membership.json │ │ │ ├── aws_iot_thing_principal_attachment.json │ │ │ ├── aws_iot_thing_type.json │ │ │ ├── aws_iot_topic_rule.json │ │ │ └── aws_iot_topic_rule_destination.json │ │ │ ├── ivschat │ │ │ ├── aws_ivs_channel.json │ │ │ ├── aws_ivs_playback_key_pair.json │ │ │ ├── aws_ivs_recording_configuration.json │ │ │ ├── aws_ivschat_logging_configuration.json │ │ │ └── aws_ivschat_room.json │ │ │ ├── kafka │ │ │ ├── aws_msk_cluster.json │ │ │ ├── aws_msk_cluster_policy.json │ │ │ ├── aws_msk_configuration.json │ │ │ ├── aws_msk_replicator.json │ │ │ ├── aws_msk_scram_secret_association.json │ │ │ ├── aws_msk_serverless_cluster.json │ │ │ ├── aws_msk_single_scram_secret_association.json │ │ │ ├── aws_msk_vpc_connection.json │ │ │ └── aws_mskconnect_connector.json │ │ │ ├── kafkaconnect │ │ │ ├── aws_mskconnect_custom_plugin.json │ │ │ └── aws_mskconnect_worker_configuration.json │ │ │ ├── kendra │ │ │ ├── aws_kendra_data_source.json │ │ │ ├── aws_kendra_experience.json │ │ │ ├── aws_kendra_faq.json │ │ │ ├── aws_kendra_index.json │ │ │ ├── aws_kendra_query_suggestions_block_list.json │ │ │ └── aws_kendra_thesaurus.json │ │ │ ├── kinesis │ │ │ ├── aws_kinesis_resource_policy.json │ │ │ └── aws_kinesis_stream_consumer.json │ │ │ ├── kinesisanalytics │ │ │ ├── aws_kinesis_analytics_application.json │ │ │ ├── aws_kinesisanalyticsv2_application.json │ │ │ └── aws_kinesisanalyticsv2_application_snapshot.json │ │ │ ├── kms │ │ │ ├── aws_kms_alias.json │ │ │ ├── aws_kms_ciphertext.json │ │ │ ├── aws_kms_custom_key_store.json │ │ │ ├── aws_kms_external_key.json │ │ │ ├── aws_kms_grant.json │ │ │ ├── aws_kms_key.json │ │ │ ├── aws_kms_key_policy.json │ │ │ ├── aws_kms_replica_external_key.json │ │ │ └── aws_kms_replica_key.json │ │ │ ├── lakeformation │ │ │ ├── aws_lakeformation_data_cells_filter.json │ │ │ ├── aws_lakeformation_data_lake_settings.json │ │ │ ├── aws_lakeformation_lf_tag.json │ │ │ ├── aws_lakeformation_opt_in.json │ │ │ ├── aws_lakeformation_permissions.json │ │ │ ├── aws_lakeformation_resource.json │ │ │ ├── aws_lakeformation_resource_lf_tag.json │ │ │ └── aws_lakeformation_resource_lf_tags.json │ │ │ ├── lambda │ │ │ ├── aws_lambda_alias.json │ │ │ ├── aws_lambda_code_signing_config.json │ │ │ ├── aws_lambda_event_source_mapping.json │ │ │ ├── aws_lambda_function.json │ │ │ ├── aws_lambda_function_event_invoke_config.json │ │ │ ├── aws_lambda_function_recursion_config.json │ │ │ ├── aws_lambda_function_url.json │ │ │ ├── aws_lambda_invocation.json │ │ │ ├── aws_lambda_layer_version.json │ │ │ ├── aws_lambda_layer_version_permission.json │ │ │ ├── aws_lambda_permission.json │ │ │ ├── aws_lambda_provisioned_concurrency_config.json │ │ │ └── aws_lambda_runtime_management_config.json │ │ │ ├── lex │ │ │ ├── aws_lex_bot.json │ │ │ ├── aws_lex_bot_alias.json │ │ │ ├── aws_lex_intent.json │ │ │ ├── aws_lex_slot_type.json │ │ │ ├── aws_lexv2models_bot.json │ │ │ ├── aws_lexv2models_bot_locale.json │ │ │ ├── aws_lexv2models_bot_version.json │ │ │ ├── aws_lexv2models_intent.json │ │ │ ├── aws_lexv2models_slot.json │ │ │ └── aws_lexv2models_slot_type.json │ │ │ ├── license-manager │ │ │ ├── aws_licensemanager_association.json │ │ │ ├── aws_licensemanager_grant.json │ │ │ ├── aws_licensemanager_grant_accepter.json │ │ │ └── aws_licensemanager_license_configuration.json │ │ │ ├── lightsail │ │ │ ├── aws_lightsail_bucket.json │ │ │ ├── aws_lightsail_bucket_access_key.json │ │ │ ├── aws_lightsail_bucket_access_key_access_key.json │ │ │ ├── aws_lightsail_bucket_resource_access.json │ │ │ ├── aws_lightsail_certificate.json │ │ │ ├── aws_lightsail_container_service.json │ │ │ ├── aws_lightsail_container_service_deployment_version.json │ │ │ ├── aws_lightsail_database.json │ │ │ ├── aws_lightsail_disk.json │ │ │ ├── aws_lightsail_disk_attachment.json │ │ │ ├── aws_lightsail_distribution.json │ │ │ ├── aws_lightsail_domain.json │ │ │ ├── aws_lightsail_domain_entry.json │ │ │ ├── aws_lightsail_instance.json │ │ │ ├── aws_lightsail_instance_public_ports.json │ │ │ ├── aws_lightsail_key_pair.json │ │ │ ├── aws_lightsail_lb.json │ │ │ ├── aws_lightsail_lb_attachment.json │ │ │ ├── aws_lightsail_lb_certificate.json │ │ │ ├── aws_lightsail_lb_certificate_attachment.json │ │ │ ├── aws_lightsail_lb_https_redirection_policy.json │ │ │ ├── aws_lightsail_lb_stickiness_policy.json │ │ │ ├── aws_lightsail_static_ip.json │ │ │ └── aws_lightsail_static_ip_attachment.json │ │ │ ├── logs │ │ │ ├── aws_cloudwatch_log_account_policy.json │ │ │ ├── aws_cloudwatch_log_anomaly_detector.json │ │ │ ├── aws_cloudwatch_log_data_protection_policy.json │ │ │ ├── aws_cloudwatch_log_delivery.json │ │ │ ├── aws_cloudwatch_log_delivery_destination.json │ │ │ ├── aws_cloudwatch_log_delivery_destination_policy.json │ │ │ ├── aws_cloudwatch_log_delivery_source.json │ │ │ ├── aws_cloudwatch_log_destination.json │ │ │ ├── aws_cloudwatch_log_destination_policy.json │ │ │ ├── aws_cloudwatch_log_group.json │ │ │ ├── aws_cloudwatch_log_index_policy.json │ │ │ ├── aws_cloudwatch_log_metric_filter.json │ │ │ ├── aws_cloudwatch_log_resource_policy.json │ │ │ ├── aws_cloudwatch_log_stream.json │ │ │ ├── aws_cloudwatch_log_subscription_filter.json │ │ │ └── aws_cloudwatch_query_definition.json │ │ │ ├── m2 │ │ │ ├── aws_m2_application.json │ │ │ ├── aws_m2_deployment.json │ │ │ └── aws_m2_environment.json │ │ │ ├── macie2 │ │ │ ├── aws_macie2_account.json │ │ │ ├── aws_macie2_classification_export_configuration.json │ │ │ ├── aws_macie2_classification_job.json │ │ │ ├── aws_macie2_custom_data_identifier.json │ │ │ ├── aws_macie2_findings_filter.json │ │ │ ├── aws_macie2_invitation_accepter.json │ │ │ ├── aws_macie2_member.json │ │ │ ├── aws_macie2_organization_admin_account.json │ │ │ └── aws_macie2_organization_configuration.json │ │ │ ├── mediaconvert │ │ │ └── aws_media_convert_queue.json │ │ │ ├── medialive │ │ │ ├── aws_medialive_channel.json │ │ │ ├── aws_medialive_input.json │ │ │ ├── aws_medialive_input_security_group.json │ │ │ ├── aws_medialive_multiplex.json │ │ │ └── aws_medialive_multiplex_program.json │ │ │ ├── mediapackage │ │ │ └── aws_media_package_channel.json │ │ │ ├── mediapackagev2 │ │ │ └── aws_media_packagev2_channel_group.json │ │ │ ├── mediastore │ │ │ ├── aws_media_store_container.json │ │ │ └── aws_media_store_container_policy.json │ │ │ ├── memorydb │ │ │ ├── aws_memorydb_acl.json │ │ │ ├── aws_memorydb_cluster.json │ │ │ ├── aws_memorydb_multi_region_cluster.json │ │ │ ├── aws_memorydb_parameter_group.json │ │ │ ├── aws_memorydb_snapshot.json │ │ │ ├── aws_memorydb_subnet_group.json │ │ │ └── aws_memorydb_user.json │ │ │ ├── mobiletargeting │ │ │ ├── aws_pinpoint_adm_channel.json │ │ │ ├── aws_pinpoint_apns_channel.json │ │ │ ├── aws_pinpoint_apns_sandbox_channel.json │ │ │ ├── aws_pinpoint_apns_voip_channel.json │ │ │ ├── aws_pinpoint_apns_voip_sandbox_channel.json │ │ │ ├── aws_pinpoint_app.json │ │ │ ├── aws_pinpoint_baidu_channel.json │ │ │ ├── aws_pinpoint_email_channel.json │ │ │ ├── aws_pinpoint_email_template.json │ │ │ ├── aws_pinpoint_event_stream.json │ │ │ ├── aws_pinpoint_gcm_channel.json │ │ │ └── aws_pinpoint_sms_channel.json │ │ │ ├── mq │ │ │ ├── aws_mq_broker.json │ │ │ └── aws_mq_configuration.json │ │ │ ├── neptune-graph │ │ │ └── aws_neptunegraph_graph.json │ │ │ ├── network-firewall │ │ │ ├── aws_networkfirewall_firewall.json │ │ │ ├── aws_networkfirewall_firewall_policy.json │ │ │ ├── aws_networkfirewall_logging_configuration.json │ │ │ ├── aws_networkfirewall_resource_policy.json │ │ │ ├── aws_networkfirewall_rule_group.json │ │ │ └── aws_networkfirewall_tls_inspection_configuration.json │ │ │ ├── networkmanager │ │ │ ├── aws_networkmanager_attachment_accepter.json │ │ │ ├── aws_networkmanager_connect_attachment.json │ │ │ ├── aws_networkmanager_connect_peer.json │ │ │ ├── aws_networkmanager_connection.json │ │ │ ├── aws_networkmanager_core_network.json │ │ │ ├── aws_networkmanager_core_network_policy_attachment.json │ │ │ ├── aws_networkmanager_customer_gateway_association.json │ │ │ ├── aws_networkmanager_device.json │ │ │ ├── aws_networkmanager_dx_gateway_attachment.json │ │ │ ├── aws_networkmanager_global_network.json │ │ │ ├── aws_networkmanager_link.json │ │ │ ├── aws_networkmanager_link_association.json │ │ │ ├── aws_networkmanager_site.json │ │ │ ├── aws_networkmanager_site_to_site_vpn_attachment.json │ │ │ ├── aws_networkmanager_transit_gateway_connect_peer_association.json │ │ │ ├── aws_networkmanager_transit_gateway_peering.json │ │ │ ├── aws_networkmanager_transit_gateway_registration.json │ │ │ ├── aws_networkmanager_transit_gateway_route_table_attachment.json │ │ │ └── aws_networkmanager_vpc_attachment.json │ │ │ ├── networkmonitor │ │ │ ├── aws_networkmonitor_monitor.json │ │ │ └── aws_networkmonitor_probe.json │ │ │ ├── notifications-contacts │ │ │ └── aws_notificationscontacts_email_contact.json │ │ │ ├── notifications │ │ │ ├── aws_notifications_channel_association.json │ │ │ ├── aws_notifications_event_rule.json │ │ │ ├── aws_notifications_notification_configuration.json │ │ │ └── aws_notifications_notification_hub.json │ │ │ ├── oam │ │ │ ├── aws_oam_link.json │ │ │ ├── aws_oam_sink.json │ │ │ └── aws_oam_sink_policy.json │ │ │ ├── opsworks │ │ │ ├── aws_opsworks_application.json │ │ │ ├── aws_opsworks_custom_layer.json │ │ │ ├── aws_opsworks_ecs_cluster_layer.json │ │ │ ├── aws_opsworks_ganglia_layer.json │ │ │ ├── aws_opsworks_haproxy_layer.json │ │ │ ├── aws_opsworks_instance.json │ │ │ ├── aws_opsworks_java_app_layer.json │ │ │ ├── aws_opsworks_memcached_layer.json │ │ │ ├── aws_opsworks_mysql_layer.json │ │ │ ├── aws_opsworks_nodejs_app_layer.json │ │ │ ├── aws_opsworks_permission.json │ │ │ ├── aws_opsworks_php_app_layer.json │ │ │ ├── aws_opsworks_rails_app_layer.json │ │ │ ├── aws_opsworks_rds_db_instance.json │ │ │ ├── aws_opsworks_stack.json │ │ │ ├── aws_opsworks_static_web_layer.json │ │ │ └── aws_opsworks_user_profile.json │ │ │ ├── organizations │ │ │ ├── aws_organizations_account.json │ │ │ ├── aws_organizations_delegated_administrator.json │ │ │ ├── aws_organizations_organization.json │ │ │ ├── aws_organizations_organizational_unit.json │ │ │ ├── aws_organizations_policy.json │ │ │ ├── aws_organizations_policy_attachment.json │ │ │ └── aws_organizations_resource_policy.json │ │ │ ├── osis │ │ │ └── aws_osis_pipeline.json │ │ │ ├── payment-cryptography │ │ │ ├── aws_paymentcryptography_key.json │ │ │ └── aws_paymentcryptography_key_alias.json │ │ │ ├── pipes │ │ │ └── aws_pipes_pipe.json │ │ │ ├── profile │ │ │ ├── aws_customerprofiles_domain.json │ │ │ └── aws_customerprofiles_profile.json │ │ │ ├── qbusiness │ │ │ └── aws_qbusiness_application.json │ │ │ ├── qldb │ │ │ ├── aws_qldb_ledger.json │ │ │ └── aws_qldb_stream.json │ │ │ ├── quicksight │ │ │ ├── aws_quicksight_account_settings.json │ │ │ ├── aws_quicksight_account_subscription.json │ │ │ ├── aws_quicksight_analysis.json │ │ │ ├── aws_quicksight_dashboard.json │ │ │ ├── aws_quicksight_data_set.json │ │ │ ├── aws_quicksight_data_source.json │ │ │ ├── aws_quicksight_folder.json │ │ │ ├── aws_quicksight_folder_membership.json │ │ │ ├── aws_quicksight_group.json │ │ │ ├── aws_quicksight_group_membership.json │ │ │ ├── aws_quicksight_iam_policy_assignment.json │ │ │ ├── aws_quicksight_ingestion.json │ │ │ ├── aws_quicksight_namespace.json │ │ │ ├── aws_quicksight_refresh_schedule.json │ │ │ ├── aws_quicksight_role_membership.json │ │ │ ├── aws_quicksight_template.json │ │ │ ├── aws_quicksight_template_alias.json │ │ │ ├── aws_quicksight_theme.json │ │ │ ├── aws_quicksight_user.json │ │ │ └── aws_quicksight_vpc_connection.json │ │ │ ├── ram │ │ │ ├── aws_ram_principal_association.json │ │ │ ├── aws_ram_resource_association.json │ │ │ ├── aws_ram_resource_share.json │ │ │ ├── aws_ram_resource_share_accepter.json │ │ │ └── aws_ram_sharing_with_organization.json │ │ │ ├── rbin │ │ │ └── aws_rbin_rule.json │ │ │ ├── rds │ │ │ ├── aws_db_cluster_snapshot.json │ │ │ ├── aws_db_event_subscription.json │ │ │ ├── aws_db_instance.json │ │ │ ├── aws_db_instance_automated_backups_replication.json │ │ │ ├── aws_db_instance_role_association.json │ │ │ ├── aws_db_option_group.json │ │ │ ├── aws_db_parameter_group.json │ │ │ ├── aws_db_proxy.json │ │ │ ├── aws_db_proxy_default_target_group.json │ │ │ ├── aws_db_proxy_endpoint.json │ │ │ ├── aws_db_proxy_target.json │ │ │ ├── aws_db_snapshot.json │ │ │ ├── aws_db_snapshot_copy.json │ │ │ ├── aws_db_subnet_group.json │ │ │ ├── aws_neptune_cluster.json │ │ │ ├── aws_neptune_cluster_endpoint.json │ │ │ ├── aws_neptune_cluster_instance.json │ │ │ ├── aws_neptune_cluster_snapshot.json │ │ │ ├── aws_neptune_event_subscription.json │ │ │ ├── aws_rds_certificate.json │ │ │ ├── aws_rds_cluster.json │ │ │ ├── aws_rds_cluster_activity_stream.json │ │ │ ├── aws_rds_cluster_endpoint.json │ │ │ ├── aws_rds_cluster_parameter_group.json │ │ │ ├── aws_rds_cluster_role_association.json │ │ │ ├── aws_rds_cluster_snapshot_copy.json │ │ │ ├── aws_rds_custom_db_engine_version.json │ │ │ ├── aws_rds_export_task.json │ │ │ ├── aws_rds_global_cluster.json │ │ │ ├── aws_rds_instance_state.json │ │ │ ├── aws_rds_integration.json │ │ │ ├── aws_rds_reserved_instance.json │ │ │ └── aws_rds_shard_group.json │ │ │ ├── redshift-data │ │ │ └── aws_redshiftdata_statement.json │ │ │ ├── redshift-serverless │ │ │ ├── aws_redshiftserverless_custom_domain_association.json │ │ │ ├── aws_redshiftserverless_endpoint_access.json │ │ │ ├── aws_redshiftserverless_namespace.json │ │ │ ├── aws_redshiftserverless_resource_policy.json │ │ │ ├── aws_redshiftserverless_snapshot.json │ │ │ ├── aws_redshiftserverless_usage_limit.json │ │ │ └── aws_redshiftserverless_workgroup.json │ │ │ ├── redshift │ │ │ ├── aws_redshift_authentication_profile.json │ │ │ ├── aws_redshift_cluster.json │ │ │ ├── aws_redshift_cluster_iam_roles.json │ │ │ ├── aws_redshift_cluster_snapshot.json │ │ │ ├── aws_redshift_data_share_authorization.json │ │ │ ├── aws_redshift_data_share_consumer_association.json │ │ │ ├── aws_redshift_endpoint_access.json │ │ │ ├── aws_redshift_endpoint_authorization.json │ │ │ ├── aws_redshift_event_subscription.json │ │ │ ├── aws_redshift_hsm_client_certificate.json │ │ │ ├── aws_redshift_hsm_configuration.json │ │ │ ├── aws_redshift_integration.json │ │ │ ├── aws_redshift_logging.json │ │ │ ├── aws_redshift_parameter_group.json │ │ │ ├── aws_redshift_partner.json │ │ │ ├── aws_redshift_resource_policy.json │ │ │ ├── aws_redshift_scheduled_action.json │ │ │ ├── aws_redshift_snapshot_copy.json │ │ │ ├── aws_redshift_snapshot_copy_grant.json │ │ │ ├── aws_redshift_snapshot_schedule.json │ │ │ ├── aws_redshift_snapshot_schedule_association.json │ │ │ ├── aws_redshift_subnet_group.json │ │ │ └── aws_redshift_usage_limit.json │ │ │ ├── rekognition │ │ │ ├── aws_rekognition_collection.json │ │ │ ├── aws_rekognition_project.json │ │ │ └── aws_rekognition_stream_processor.json │ │ │ ├── resiliencehub │ │ │ └── aws_resiliencehub_resiliency_policy.json │ │ │ ├── resource-explorer-2 │ │ │ ├── aws_resourceexplorer2_index.json │ │ │ └── aws_resourceexplorer2_view.json │ │ │ ├── resource-groups │ │ │ ├── aws_resourcegroups_group.json │ │ │ └── aws_resourcegroups_resource.json │ │ │ ├── rolesanywhere │ │ │ ├── aws_rolesanywhere_profile.json │ │ │ └── aws_rolesanywhere_trust_anchor.json │ │ │ ├── route53-recovery-readiness │ │ │ ├── aws_route53recoverycontrolconfig_cluster.json │ │ │ ├── aws_route53recoverycontrolconfig_control_panel.json │ │ │ ├── aws_route53recoverycontrolconfig_routing_control.json │ │ │ ├── aws_route53recoverycontrolconfig_safety_rule.json │ │ │ ├── aws_route53recoveryreadiness_cell.json │ │ │ ├── aws_route53recoveryreadiness_readiness_check.json │ │ │ ├── aws_route53recoveryreadiness_recovery_group.json │ │ │ └── aws_route53recoveryreadiness_resource_set.json │ │ │ ├── route53 │ │ │ ├── aws_route53_cidr_collection.json │ │ │ ├── aws_route53_cidr_location.json │ │ │ ├── aws_route53_delegation_set.json │ │ │ ├── aws_route53_health_check.json │ │ │ ├── aws_route53_hosted_zone_dnssec.json │ │ │ ├── aws_route53_key_signing_key.json │ │ │ ├── aws_route53_query_log.json │ │ │ ├── aws_route53_record.json │ │ │ ├── aws_route53_records_exclusive.json │ │ │ ├── aws_route53_traffic_policy.json │ │ │ ├── aws_route53_traffic_policy_instance.json │ │ │ ├── aws_route53_vpc_association_authorization.json │ │ │ ├── aws_route53_zone.json │ │ │ └── aws_route53_zone_association.json │ │ │ ├── route53domains │ │ │ ├── aws_route53domains_delegation_signer_record.json │ │ │ ├── aws_route53domains_domain.json │ │ │ └── aws_route53domains_registered_domain.json │ │ │ ├── route53profiles │ │ │ ├── aws_route53profiles_association.json │ │ │ ├── aws_route53profiles_profile.json │ │ │ └── aws_route53profiles_resource_association.json │ │ │ ├── route53resolver │ │ │ ├── aws_route53_resolver_config.json │ │ │ ├── aws_route53_resolver_dnssec_config.json │ │ │ ├── aws_route53_resolver_endpoint.json │ │ │ ├── aws_route53_resolver_firewall_config.json │ │ │ ├── aws_route53_resolver_firewall_domain_list.json │ │ │ ├── aws_route53_resolver_firewall_rule.json │ │ │ ├── aws_route53_resolver_firewall_rule_group.json │ │ │ ├── aws_route53_resolver_firewall_rule_group_association.json │ │ │ ├── aws_route53_resolver_query_log_config.json │ │ │ ├── aws_route53_resolver_query_log_config_association.json │ │ │ ├── aws_route53_resolver_rule.json │ │ │ └── aws_route53_resolver_rule_association.json │ │ │ ├── rum │ │ │ ├── aws_rum_app_monitor.json │ │ │ └── aws_rum_metrics_destination.json │ │ │ ├── s3-express │ │ │ └── aws_s3_directory_bucket.json │ │ │ ├── s3-outposts │ │ │ ├── aws_s3control_access_grants_instance_resource_policy.json │ │ │ ├── aws_s3control_bucket.json │ │ │ ├── aws_s3control_bucket_lifecycle_configuration.json │ │ │ ├── aws_s3control_bucket_policy.json │ │ │ ├── aws_s3control_object_lambda_access_point.json │ │ │ ├── aws_s3control_object_lambda_access_point_policy.json │ │ │ └── aws_s3outposts_endpoint.json │ │ │ ├── s3 │ │ │ ├── aws_s3_access_point.json │ │ │ ├── aws_s3_account_public_access_block.json │ │ │ ├── aws_s3_bucket.json │ │ │ ├── aws_s3_bucket_accelerate_configuration.json │ │ │ ├── aws_s3_bucket_acl.json │ │ │ ├── aws_s3_bucket_analytics_configuration.json │ │ │ ├── aws_s3_bucket_cors_configuration.json │ │ │ ├── aws_s3_bucket_intelligent_tiering_configuration.json │ │ │ ├── aws_s3_bucket_inventory.json │ │ │ ├── aws_s3_bucket_lifecycle_configuration.json │ │ │ ├── aws_s3_bucket_logging.json │ │ │ ├── aws_s3_bucket_metric.json │ │ │ ├── aws_s3_bucket_notification.json │ │ │ ├── aws_s3_bucket_object_lock_configuration.json │ │ │ ├── aws_s3_bucket_ownership_controls.json │ │ │ ├── aws_s3_bucket_policy.json │ │ │ ├── aws_s3_bucket_public_access_block.json │ │ │ ├── aws_s3_bucket_replication_configuration.json │ │ │ ├── aws_s3_bucket_request_payment_configuration.json │ │ │ ├── aws_s3_bucket_server_side_encryption_configuration.json │ │ │ ├── aws_s3_bucket_versioning.json │ │ │ ├── aws_s3_bucket_website_configuration.json │ │ │ ├── aws_s3_object.json │ │ │ ├── aws_s3_object_copy.json │ │ │ ├── aws_s3control_access_grant.json │ │ │ ├── aws_s3control_access_grants_instance.json │ │ │ ├── aws_s3control_access_grants_location.json │ │ │ ├── aws_s3control_access_point_policy.json │ │ │ ├── aws_s3control_multi_region_access_point.json │ │ │ ├── aws_s3control_multi_region_access_point_policy.json │ │ │ └── aws_s3control_storage_lens_configuration.json │ │ │ ├── s3control │ │ │ └── aws_s3control_directory_bucket_access_point_scope.json │ │ │ ├── s3tables │ │ │ ├── aws_s3tables_namespace.json │ │ │ ├── aws_s3tables_table.json │ │ │ ├── aws_s3tables_table_bucket.json │ │ │ ├── aws_s3tables_table_bucket_policy.json │ │ │ └── aws_s3tables_table_policy.json │ │ │ ├── sagemaker │ │ │ ├── aws_sagemaker_app.json │ │ │ ├── aws_sagemaker_app_image_config.json │ │ │ ├── aws_sagemaker_code_repository.json │ │ │ ├── aws_sagemaker_data_quality_job_definition.json │ │ │ ├── aws_sagemaker_device.json │ │ │ ├── aws_sagemaker_device_fleet.json │ │ │ ├── aws_sagemaker_domain.json │ │ │ ├── aws_sagemaker_endpoint.json │ │ │ ├── aws_sagemaker_endpoint_configuration.json │ │ │ ├── aws_sagemaker_feature_group.json │ │ │ ├── aws_sagemaker_flow_definition.json │ │ │ ├── aws_sagemaker_hub.json │ │ │ ├── aws_sagemaker_human_task_ui.json │ │ │ ├── aws_sagemaker_image.json │ │ │ ├── aws_sagemaker_image_version.json │ │ │ ├── aws_sagemaker_mlflow_tracking_server.json │ │ │ ├── aws_sagemaker_model.json │ │ │ ├── aws_sagemaker_model_package_group.json │ │ │ ├── aws_sagemaker_model_package_group_policy.json │ │ │ ├── aws_sagemaker_monitoring_schedule.json │ │ │ ├── aws_sagemaker_notebook_instance.json │ │ │ ├── aws_sagemaker_notebook_instance_lifecycle_configuration.json │ │ │ ├── aws_sagemaker_pipeline.json │ │ │ ├── aws_sagemaker_project.json │ │ │ ├── aws_sagemaker_servicecatalog_portfolio_status.json │ │ │ ├── aws_sagemaker_space.json │ │ │ ├── aws_sagemaker_studio_lifecycle_config.json │ │ │ ├── aws_sagemaker_user_profile.json │ │ │ ├── aws_sagemaker_workforce.json │ │ │ └── aws_sagemaker_workteam.json │ │ │ ├── scheduler │ │ │ ├── aws_scheduler_schedule.json │ │ │ └── aws_scheduler_schedule_group.json │ │ │ ├── schemas │ │ │ ├── aws_schemas_discoverer.json │ │ │ ├── aws_schemas_registry.json │ │ │ ├── aws_schemas_registry_policy.json │ │ │ └── aws_schemas_schema.json │ │ │ ├── sdb │ │ │ └── aws_simpledb_domain.json │ │ │ ├── secretsmanager │ │ │ ├── aws_secretsmanager_secret.json │ │ │ ├── aws_secretsmanager_secret_policy.json │ │ │ ├── aws_secretsmanager_secret_rotation.json │ │ │ └── aws_secretsmanager_secret_version.json │ │ │ ├── securityhub │ │ │ ├── aws_securityhub_account.json │ │ │ ├── aws_securityhub_action_target.json │ │ │ ├── aws_securityhub_automation_rule.json │ │ │ ├── aws_securityhub_configuration_policy.json │ │ │ ├── aws_securityhub_configuration_policy_association.json │ │ │ ├── aws_securityhub_finding_aggregator.json │ │ │ ├── aws_securityhub_insight.json │ │ │ ├── aws_securityhub_invite_accepter.json │ │ │ ├── aws_securityhub_member.json │ │ │ ├── aws_securityhub_organization_admin_account.json │ │ │ ├── aws_securityhub_organization_configuration.json │ │ │ ├── aws_securityhub_product_subscription.json │ │ │ ├── aws_securityhub_standards_control.json │ │ │ ├── aws_securityhub_standards_control_association.json │ │ │ └── aws_securityhub_standards_subscription.json │ │ │ ├── securitylake │ │ │ ├── aws_securitylake_aws_log_source.json │ │ │ ├── aws_securitylake_custom_log_source.json │ │ │ ├── aws_securitylake_data_lake.json │ │ │ ├── aws_securitylake_subscriber.json │ │ │ └── aws_securitylake_subscriber_notification.json │ │ │ ├── serverlessrepo │ │ │ └── aws_serverlessapplicationrepository_cloudformation_stack.json │ │ │ ├── servicecatalog │ │ │ ├── aws_servicecatalog_budget_resource_association.json │ │ │ ├── aws_servicecatalog_constraint.json │ │ │ ├── aws_servicecatalog_organizations_access.json │ │ │ ├── aws_servicecatalog_portfolio.json │ │ │ ├── aws_servicecatalog_portfolio_share.json │ │ │ ├── aws_servicecatalog_principal_portfolio_association.json │ │ │ ├── aws_servicecatalog_product.json │ │ │ ├── aws_servicecatalog_product_portfolio_association.json │ │ │ ├── aws_servicecatalog_provisioned_product.json │ │ │ ├── aws_servicecatalog_provisioning_artifact.json │ │ │ ├── aws_servicecatalog_service_action.json │ │ │ ├── aws_servicecatalog_tag_option.json │ │ │ ├── aws_servicecatalog_tag_option_resource_association.json │ │ │ ├── aws_servicecatalogappregistry_application.json │ │ │ ├── aws_servicecatalogappregistry_attribute_group.json │ │ │ └── aws_servicecatalogappregistry_attribute_group_association.json │ │ │ ├── servicediscovery │ │ │ ├── aws_service_discovery_http_namespace.json │ │ │ ├── aws_service_discovery_instance.json │ │ │ ├── aws_service_discovery_private_dns_namespace.json │ │ │ ├── aws_service_discovery_public_dns_namespace.json │ │ │ └── aws_service_discovery_service.json │ │ │ ├── servicequotas │ │ │ ├── aws_servicequotas_service_quota.json │ │ │ ├── aws_servicequotas_template.json │ │ │ └── aws_servicequotas_template_association.json │ │ │ ├── ses │ │ │ ├── aws_ses_active_receipt_rule_set.json │ │ │ ├── aws_ses_configuration_set.json │ │ │ ├── aws_ses_domain_dkim.json │ │ │ ├── aws_ses_domain_identity.json │ │ │ ├── aws_ses_domain_identity_verification.json │ │ │ ├── aws_ses_domain_mail_from.json │ │ │ ├── aws_ses_email_identity.json │ │ │ ├── aws_ses_event_destination.json │ │ │ ├── aws_ses_identity_notification_topic.json │ │ │ ├── aws_ses_identity_policy.json │ │ │ ├── aws_ses_receipt_filter.json │ │ │ ├── aws_ses_receipt_rule.json │ │ │ ├── aws_ses_receipt_rule_set.json │ │ │ ├── aws_ses_template.json │ │ │ ├── aws_sesv2_account_suppression_attributes.json │ │ │ ├── aws_sesv2_account_vdm_attributes.json │ │ │ ├── aws_sesv2_configuration_set.json │ │ │ ├── aws_sesv2_configuration_set_event_destination.json │ │ │ ├── aws_sesv2_contact_list.json │ │ │ ├── aws_sesv2_dedicated_ip_assignment.json │ │ │ ├── aws_sesv2_dedicated_ip_pool.json │ │ │ ├── aws_sesv2_email_identity.json │ │ │ ├── aws_sesv2_email_identity_feedback_attributes.json │ │ │ ├── aws_sesv2_email_identity_mail_from_attributes.json │ │ │ └── aws_sesv2_email_identity_policy.json │ │ │ ├── shield │ │ │ ├── aws_shield_application_layer_automatic_response.json │ │ │ ├── aws_shield_drt_access_log_bucket_association.json │ │ │ ├── aws_shield_drt_access_role_arn_association.json │ │ │ ├── aws_shield_proactive_engagement.json │ │ │ ├── aws_shield_protection.json │ │ │ ├── aws_shield_protection_group.json │ │ │ ├── aws_shield_protection_health_check_association.json │ │ │ └── aws_shield_subscription.json │ │ │ ├── signer │ │ │ ├── aws_signer_signing_job.json │ │ │ ├── aws_signer_signing_profile.json │ │ │ └── aws_signer_signing_profile_permission.json │ │ │ ├── sms-voice │ │ │ ├── aws_pinpointsmsvoicev2_configuration_set.json │ │ │ ├── aws_pinpointsmsvoicev2_opt_out_list.json │ │ │ └── aws_pinpointsmsvoicev2_phone_number.json │ │ │ ├── sns │ │ │ ├── aws_sns_platform_application.json │ │ │ ├── aws_sns_sms_preferences.json │ │ │ ├── aws_sns_topic.json │ │ │ ├── aws_sns_topic_data_protection_policy.json │ │ │ ├── aws_sns_topic_policy.json │ │ │ └── aws_sns_topic_subscription.json │ │ │ ├── sqs │ │ │ ├── aws_sqs_queue.json │ │ │ ├── aws_sqs_queue_policy.json │ │ │ ├── aws_sqs_queue_redrive_allow_policy.json │ │ │ └── aws_sqs_queue_redrive_policy.json │ │ │ ├── ssm-contacts │ │ │ ├── aws_ssmcontacts_contact.json │ │ │ ├── aws_ssmcontacts_contact_channel.json │ │ │ ├── aws_ssmcontacts_plan.json │ │ │ └── aws_ssmcontacts_rotation.json │ │ │ ├── ssm-incidents │ │ │ ├── aws_ssmincidents_replication_set.json │ │ │ └── aws_ssmincidents_response_plan.json │ │ │ ├── ssm-quicksetup │ │ │ └── aws_ssmquicksetup_configuration_manager.json │ │ │ ├── ssm │ │ │ ├── aws_ssm_activation.json │ │ │ ├── aws_ssm_association.json │ │ │ ├── aws_ssm_default_patch_baseline.json │ │ │ ├── aws_ssm_document.json │ │ │ ├── aws_ssm_maintenance_window.json │ │ │ ├── aws_ssm_maintenance_window_target.json │ │ │ ├── aws_ssm_maintenance_window_task.json │ │ │ ├── aws_ssm_parameter.json │ │ │ ├── aws_ssm_patch_baseline.json │ │ │ ├── aws_ssm_patch_group.json │ │ │ ├── aws_ssm_resource_data_sync.json │ │ │ └── aws_ssm_service_setting.json │ │ │ ├── sso │ │ │ ├── aws_ssoadmin_account_assignment.json │ │ │ ├── aws_ssoadmin_application.json │ │ │ ├── aws_ssoadmin_application_access_scope.json │ │ │ ├── aws_ssoadmin_application_assignment.json │ │ │ ├── aws_ssoadmin_application_assignment_configuration.json │ │ │ ├── aws_ssoadmin_customer_managed_policy_attachment.json │ │ │ ├── aws_ssoadmin_instance_access_control_attributes.json │ │ │ ├── aws_ssoadmin_managed_policy_attachment.json │ │ │ ├── aws_ssoadmin_permission_set.json │ │ │ ├── aws_ssoadmin_permission_set_inline_policy.json │ │ │ ├── aws_ssoadmin_permissions_boundary_attachment.json │ │ │ └── aws_ssoadmin_trusted_token_issuer.json │ │ │ ├── states │ │ │ ├── aws_sfn_activity.json │ │ │ ├── aws_sfn_alias.json │ │ │ └── aws_sfn_state_machine.json │ │ │ ├── storagegateway │ │ │ ├── aws_storagegateway_cache.json │ │ │ ├── aws_storagegateway_cached_iscsi_volume.json │ │ │ ├── aws_storagegateway_file_system_association.json │ │ │ ├── aws_storagegateway_gateway.json │ │ │ ├── aws_storagegateway_nfs_file_share.json │ │ │ ├── aws_storagegateway_smb_file_share.json │ │ │ ├── aws_storagegateway_stored_iscsi_volume.json │ │ │ ├── aws_storagegateway_tape_pool.json │ │ │ ├── aws_storagegateway_upload_buffer.json │ │ │ └── aws_storagegateway_working_storage.json │ │ │ ├── swf │ │ │ └── aws_swf_domain.json │ │ │ ├── synthetics │ │ │ ├── aws_synthetics_canary.json │ │ │ ├── aws_synthetics_group.json │ │ │ └── aws_synthetics_group_association.json │ │ │ ├── template.json │ │ │ ├── timestream │ │ │ └── aws_timestreamquery_scheduled_query.json │ │ │ ├── timestreamwrite │ │ │ ├── aws_timestreaminfluxdb_db_instance.json │ │ │ ├── aws_timestreamwrite_database.json │ │ │ └── aws_timestreamwrite_table.json │ │ │ ├── transcribe │ │ │ ├── aws_transcribe_language_model.json │ │ │ ├── aws_transcribe_medical_vocabulary.json │ │ │ ├── aws_transcribe_vocabulary.json │ │ │ └── aws_transcribe_vocabulary_filter.json │ │ │ ├── transfer │ │ │ ├── aws_transfer_access.json │ │ │ ├── aws_transfer_agreement.json │ │ │ ├── aws_transfer_certificate.json │ │ │ ├── aws_transfer_connector.json │ │ │ ├── aws_transfer_profile.json │ │ │ ├── aws_transfer_server.json │ │ │ ├── aws_transfer_ssh_key.json │ │ │ ├── aws_transfer_tag.json │ │ │ ├── aws_transfer_user.json │ │ │ └── aws_transfer_workflow.json │ │ │ ├── verified-access │ │ │ └── aws_verifiedaccess_instance_trust_provider_attachment.json │ │ │ ├── verifiedpermissions │ │ │ ├── aws_verifiedpermissions_identity_source.json │ │ │ ├── aws_verifiedpermissions_policy.json │ │ │ ├── aws_verifiedpermissions_policy_store.json │ │ │ ├── aws_verifiedpermissions_policy_template.json │ │ │ └── aws_verifiedpermissions_schema.json │ │ │ ├── vpc-lattice │ │ │ ├── aws_vpclattice_access_log_subscription.json │ │ │ ├── aws_vpclattice_auth_policy.json │ │ │ ├── aws_vpclattice_listener.json │ │ │ ├── aws_vpclattice_listener_rule.json │ │ │ ├── aws_vpclattice_resource_configuration.json │ │ │ ├── aws_vpclattice_resource_gateway.json │ │ │ ├── aws_vpclattice_resource_policy.json │ │ │ ├── aws_vpclattice_service.json │ │ │ ├── aws_vpclattice_service_network.json │ │ │ ├── aws_vpclattice_service_network_resource_association.json │ │ │ ├── aws_vpclattice_service_network_service_association.json │ │ │ ├── aws_vpclattice_service_network_vpc_association.json │ │ │ ├── aws_vpclattice_target_group.json │ │ │ └── aws_vpclattice_target_group_attachment.json │ │ │ ├── waf │ │ │ ├── aws_waf_byte_match_set.json │ │ │ ├── aws_waf_geo_match_set.json │ │ │ ├── aws_waf_ipset.json │ │ │ ├── aws_waf_rate_based_rule.json │ │ │ ├── aws_waf_regex_match_set.json │ │ │ ├── aws_waf_regex_pattern_set.json │ │ │ ├── aws_waf_rule.json │ │ │ ├── aws_waf_rule_group.json │ │ │ ├── aws_waf_size_constraint_set.json │ │ │ ├── aws_waf_sql_injection_match_set.json │ │ │ ├── aws_waf_web_acl.json │ │ │ └── aws_waf_xss_match_set.json │ │ │ ├── wafregional │ │ │ ├── aws_wafregional_byte_match_set.json │ │ │ ├── aws_wafregional_geo_match_set.json │ │ │ ├── aws_wafregional_ipset.json │ │ │ ├── aws_wafregional_rate_based_rule.json │ │ │ ├── aws_wafregional_regex_match_set.json │ │ │ ├── aws_wafregional_regex_pattern_set.json │ │ │ ├── aws_wafregional_rule.json │ │ │ ├── aws_wafregional_rule_group.json │ │ │ ├── aws_wafregional_size_constraint_set.json │ │ │ ├── aws_wafregional_sql_injection_match_set.json │ │ │ ├── aws_wafregional_web_acl.json │ │ │ ├── aws_wafregional_web_acl_association.json │ │ │ └── aws_wafregional_xss_match_set.json │ │ │ ├── wafv2 │ │ │ ├── aws_wafv2_api_key.json │ │ │ ├── aws_wafv2_ip_set.json │ │ │ ├── aws_wafv2_regex_pattern_set.json │ │ │ ├── aws_wafv2_rule_group.json │ │ │ ├── aws_wafv2_web_acl.json │ │ │ ├── aws_wafv2_web_acl_association.json │ │ │ └── aws_wafv2_web_acl_logging_configuration.json │ │ │ ├── workspaces-web │ │ │ ├── aws_workspacesweb_browser_settings.json │ │ │ ├── aws_workspacesweb_data_protection_settings.json │ │ │ ├── aws_workspacesweb_ip_access_settings.json │ │ │ ├── aws_workspacesweb_network_settings.json │ │ │ ├── aws_workspacesweb_user_access_logging_settings.json │ │ │ └── aws_workspacesweb_user_settings.json │ │ │ ├── workspaces │ │ │ ├── aws_workspaces_connection_alias.json │ │ │ ├── aws_workspaces_directory.json │ │ │ ├── aws_workspaces_ip_group.json │ │ │ └── aws_workspaces_workspace.json │ │ │ └── xray │ │ │ ├── aws_xray_encryption_config.json │ │ │ ├── aws_xray_group.json │ │ │ ├── aws_xray_resource_policy.json │ │ │ └── aws_xray_sampling_rule.json │ ├── azurerm │ │ ├── data │ │ │ ├── apimanagement │ │ │ │ ├── azurerm_api_management.json │ │ │ │ ├── azurerm_api_management_api.json │ │ │ │ ├── azurerm_api_management_api_version_set.json │ │ │ │ ├── azurerm_api_management_gateway.json │ │ │ │ ├── azurerm_api_management_gateway_host_name_configuration.json │ │ │ │ ├── azurerm_api_management_group.json │ │ │ │ ├── azurerm_api_management_product.json │ │ │ │ └── azurerm_api_management_user.json │ │ │ ├── appconfiguration │ │ │ │ ├── azurerm_app_configuration.json │ │ │ │ ├── azurerm_app_configuration_key.json │ │ │ │ └── azurerm_app_configuration_keys.json │ │ │ ├── appplatform │ │ │ │ ├── azurerm_spring_cloud_app.json │ │ │ │ └── azurerm_spring_cloud_service.json │ │ │ ├── automation │ │ │ │ ├── azurerm_automation_account.json │ │ │ │ └── azurerm_automation_variable.json │ │ │ ├── avs │ │ │ │ └── azurerm_vmware_private_cloud.json │ │ │ ├── azurestackhci │ │ │ │ └── azurerm_stack_hci_cluster.json │ │ │ ├── backend │ │ │ │ └── azurerm.json │ │ │ ├── batch │ │ │ │ ├── azurerm_batch_account.json │ │ │ │ ├── azurerm_batch_application.json │ │ │ │ ├── azurerm_batch_certificate.json │ │ │ │ └── azurerm_batch_pool.json │ │ │ ├── cache │ │ │ │ ├── azurerm_redis_cache.json │ │ │ │ └── azurerm_redis_enterprise_database.json │ │ │ ├── compute │ │ │ │ ├── azurerm_availability_set.json │ │ │ │ ├── azurerm_shared_image.json │ │ │ │ ├── azurerm_shared_image_gallery.json │ │ │ │ ├── azurerm_snapshot.json │ │ │ │ ├── azurerm_ssh_public_key.json │ │ │ │ ├── azurerm_virtual_machine.json │ │ │ │ └── azurerm_virtual_machine_scale_set.json │ │ │ ├── desktopvirtualization │ │ │ │ └── azurerm_virtual_desktop_host_pool.json │ │ │ ├── hybridcompute │ │ │ │ └── azurerm_arc_machine.json │ │ │ ├── insights │ │ │ │ └── azurerm_application_insights.json │ │ │ ├── keyvault │ │ │ │ ├── azurerm_key_vault.json │ │ │ │ ├── azurerm_key_vault_certificate.json │ │ │ │ ├── azurerm_key_vault_certificate_data.json │ │ │ │ ├── azurerm_key_vault_certificate_issuer.json │ │ │ │ ├── azurerm_key_vault_certificates.json │ │ │ │ ├── azurerm_key_vault_key.json │ │ │ │ ├── azurerm_key_vault_managed_hardware_security_module.json │ │ │ │ ├── azurerm_key_vault_secret.json │ │ │ │ └── azurerm_key_vault_secrets.json │ │ │ ├── managedidentites │ │ │ │ └── azurerm_user_assigned_identity.json │ │ │ ├── network │ │ │ │ ├── azurerm_application_gateway.json │ │ │ │ ├── azurerm_application_security_group.json │ │ │ │ ├── azurerm_bastion_host.json │ │ │ │ ├── azurerm_network_watcher.json │ │ │ │ ├── azurerm_public_ip.json │ │ │ │ ├── azurerm_public_ip_prefix.json │ │ │ │ ├── azurerm_public_ips.json │ │ │ │ ├── azurerm_route_filter.json │ │ │ │ ├── azurerm_route_table.json │ │ │ │ ├── azurerm_subnet.json │ │ │ │ ├── azurerm_traffic_manager_profile.json │ │ │ │ ├── azurerm_virtual_hub.json │ │ │ │ ├── azurerm_virtual_hub_connection.json │ │ │ │ ├── azurerm_virtual_hub_route_table.json │ │ │ │ ├── azurerm_virtual_network.json │ │ │ │ ├── azurerm_virtual_network_gateway.json │ │ │ │ ├── azurerm_virtual_network_gateway_connection.json │ │ │ │ ├── azurerm_virtual_wan.json │ │ │ │ ├── azurerm_vpn_gateway.json │ │ │ │ └── azurerm_web_application_firewall_policy.json │ │ │ ├── recoveryservices │ │ │ │ ├── azurerm_availability_set.json │ │ │ │ ├── azurerm_backup_policy_file_share.json │ │ │ │ ├── azurerm_backup_policy_vm.json │ │ │ │ ├── azurerm_site_recovery_fabric.json │ │ │ │ ├── azurerm_site_recovery_protection_container.json │ │ │ │ └── azurerm_site_recovery_replication_policy.json │ │ │ ├── resourcegroups │ │ │ │ ├── azurerm_resource_group.json │ │ │ │ └── azurerm_subscription.json │ │ │ ├── resources │ │ │ │ ├── azurerm_app_service_certificate_order.json │ │ │ │ ├── azurerm_resource_group_template_deployment.json │ │ │ │ ├── azurerm_subscription.json │ │ │ │ ├── azurerm_subscription_template_deployment.json │ │ │ │ ├── azurerm_template_spec_version.json │ │ │ │ └── azurerm_tenant_template_deployment.json │ │ │ ├── securityinsights │ │ │ │ └── azurerm_sentinel_alert_rule.json │ │ │ ├── servicebus │ │ │ │ ├── azurerm_servicebus_namespace.json │ │ │ │ ├── azurerm_servicebus_namespace_authorization_rule.json │ │ │ │ ├── azurerm_servicebus_queue.json │ │ │ │ ├── azurerm_servicebus_queue_authorization_rule.json │ │ │ │ ├── azurerm_servicebus_subscription.json │ │ │ │ └── azurerm_servicebus_topic.json │ │ │ ├── signalrservice │ │ │ │ ├── azurerm_signalr_service.json │ │ │ │ └── azurerm_web_pubsub.json │ │ │ ├── sql │ │ │ │ ├── azurerm_sql_database.json │ │ │ │ ├── azurerm_sql_managed_instance.json │ │ │ │ └── azurerm_sql_server.json │ │ │ ├── storage │ │ │ │ ├── azurerm_storage_account.json │ │ │ │ ├── azurerm_storage_blob.json │ │ │ │ ├── azurerm_storage_container.json │ │ │ │ ├── azurerm_storage_encryption_scope.json │ │ │ │ ├── azurerm_storage_management_policy.json │ │ │ │ ├── azurerm_storage_share.json │ │ │ │ └── azurerm_storage_table_entity.json │ │ │ ├── storagesync │ │ │ │ ├── azurerm_storage_sync.json │ │ │ │ └── azurerm_storage_sync_group.json │ │ │ ├── streamanalytics │ │ │ │ └── azurerm_stream_analytics_job.json │ │ │ ├── synapase │ │ │ │ └── azurerm_synapse_workspace.json │ │ │ ├── template.json │ │ │ └── web │ │ │ │ ├── azurerm_app_service.json │ │ │ │ ├── azurerm_app_service_certificate.json │ │ │ │ ├── azurerm_app_service_environment.json │ │ │ │ ├── azurerm_app_service_environment_v3.json │ │ │ │ ├── azurerm_app_service_plan.json │ │ │ │ ├── azurerm_service_plan.json │ │ │ │ ├── azurerm_windows_function_app.json │ │ │ │ └── azurerm_windows_web_app.json │ │ └── resource │ │ │ ├── apimanagement │ │ │ └── azurerm_api_management.json │ │ │ ├── appconfiguration │ │ │ └── azurerm_app_configuration.json │ │ │ ├── authorization │ │ │ └── azurerm_role_assignment.json │ │ │ ├── backend │ │ │ └── azurerm.json │ │ │ ├── cache │ │ │ └── azurerm_redis_cache.json │ │ │ ├── cognitiveservices │ │ │ └── azurerm_cognitive_account.json │ │ │ ├── compute │ │ │ ├── azurerm_disk_encryption_set.json │ │ │ ├── azurerm_linux_virtual_machine_scale_set.json │ │ │ ├── azurerm_managed_disk.json │ │ │ └── azurerm_virtual_machine.json │ │ │ ├── containerregistry │ │ │ └── azurerm_container_registry.json │ │ │ ├── containerservice │ │ │ └── azurerm_kubernetes_cluster.json │ │ │ ├── dbformariadb │ │ │ ├── azurerm_mariadb_configuration.json │ │ │ ├── azurerm_mariadb_database.json │ │ │ ├── azurerm_mariadb_firewall_rule.json │ │ │ └── azurerm_mariadb_server.json │ │ │ ├── documentdb │ │ │ ├── azurerm_cosmosdb_account.json │ │ │ └── azurerm_cosmosdb_table.json │ │ │ ├── keyvault │ │ │ ├── azurerm_key_vault.json │ │ │ ├── azurerm_key_vault_access_policy.json │ │ │ └── azurerm_key_vault_key.json │ │ │ ├── managedidentity │ │ │ └── azurerm_user_assigned_identity.json │ │ │ ├── management │ │ │ └── azurerm_management_group.json │ │ │ ├── network │ │ │ ├── azurerm_dns_zone.json │ │ │ ├── azurerm_network_interface.json │ │ │ ├── azurerm_network_security_group.json │ │ │ ├── azurerm_network_security_rule.json │ │ │ ├── azurerm_network_watcher.json │ │ │ ├── azurerm_network_watcher_flow_log.json │ │ │ ├── azurerm_private_dns_zone.json │ │ │ ├── azurerm_private_endpoint.json │ │ │ ├── azurerm_subnet.json │ │ │ ├── azurerm_virtual_network.json │ │ │ └── azurerm_virtual_network_peering.json │ │ │ ├── operationalinsights │ │ │ └── azurerm_log_analytics_workspace.json │ │ │ ├── operationsmanagement │ │ │ └── azurerm_log_analytics_solution.json │ │ │ ├── resourcegroups │ │ │ └── azurerm_resource_group.json │ │ │ ├── search │ │ │ └── azurerm_search_service.json │ │ │ ├── security │ │ │ ├── azurerm_security_center_contact.json │ │ │ ├── azurerm_security_center_setting.json │ │ │ └── azurerm_security_center_workspace.json │ │ │ ├── serverfarms │ │ │ └── azurerm_service_plan.json │ │ │ ├── signalrservice │ │ │ └── azurerm_web_pubsub.json │ │ │ ├── storage │ │ │ ├── azurerm_storage_account.json │ │ │ ├── azurerm_storage_account_customer_managed_key.json │ │ │ ├── azurerm_storage_account_network_rules.json │ │ │ └── azurerm_storage_container.json │ │ │ ├── storagesync │ │ │ ├── azurerm_storage_sync.json │ │ │ └── azurerm_storage_sync_group.json │ │ │ ├── template.json │ │ │ └── web │ │ │ ├── azurerm_app_service.json │ │ │ └── azurerm_app_service_plan.json │ └── google │ │ ├── data │ │ ├── accesscontextmanager │ │ │ └── google_access_context_manager_access_policy.json │ │ ├── aiplatform │ │ │ ├── google_colab_runtime_template_iam_policy.json │ │ │ ├── google_vertex_ai_endpoint_iam_policy.json │ │ │ ├── google_vertex_ai_feature_group_iam_policy.json │ │ │ ├── google_vertex_ai_feature_online_store_featureview_iam_policy.json │ │ │ ├── google_vertex_ai_feature_online_store_iam_policy.json │ │ │ ├── google_vertex_ai_featurestore_entitytype_iam_policy.json │ │ │ └── google_vertex_ai_featurestore_iam_policy.json │ │ ├── alloydb │ │ │ ├── google_alloydb_cluster.json │ │ │ ├── google_alloydb_instance.json │ │ │ ├── google_alloydb_locations.json │ │ │ └── google_alloydb_supported_database_flags.json │ │ ├── analyticshub │ │ │ ├── google_bigquery_analytics_hub_data_exchange_iam_policy.json │ │ │ └── google_bigquery_analytics_hub_listing_iam_policy.json │ │ ├── apphub │ │ │ ├── google_apphub_application.json │ │ │ ├── google_apphub_discovered_service.json │ │ │ └── google_apphub_discovered_workload.json │ │ ├── artifactregistry │ │ │ ├── google_artifact_registry_docker_image.json │ │ │ ├── google_artifact_registry_docker_images.json │ │ │ ├── google_artifact_registry_locations.json │ │ │ ├── google_artifact_registry_maven_artifact.json │ │ │ ├── google_artifact_registry_maven_artifacts.json │ │ │ ├── google_artifact_registry_npm_package.json │ │ │ ├── google_artifact_registry_npm_packages.json │ │ │ ├── google_artifact_registry_packages.json │ │ │ ├── google_artifact_registry_python_package.json │ │ │ ├── google_artifact_registry_python_packages.json │ │ │ ├── google_artifact_registry_repositories.json │ │ │ ├── google_artifact_registry_repository.json │ │ │ ├── google_artifact_registry_repository_iam_policy.json │ │ │ ├── google_artifact_registry_tags.json │ │ │ ├── google_artifact_registry_version.json │ │ │ └── google_artifact_registry_versions.json │ │ ├── backend │ │ │ └── gcs.json │ │ ├── backupdr │ │ │ ├── google_backup_dr_backup.json │ │ │ ├── google_backup_dr_backup_plan_association.json │ │ │ ├── google_backup_dr_backup_plan_associations.json │ │ │ ├── google_backup_dr_backup_vault.json │ │ │ ├── google_backup_dr_data_source.json │ │ │ ├── google_backup_dr_data_source_reference.json │ │ │ └── google_backup_dr_data_source_references.json │ │ ├── beyondcorp │ │ │ ├── google_beyondcorp_app_connection.json │ │ │ ├── google_beyondcorp_app_connector.json │ │ │ ├── google_beyondcorp_app_gateway.json │ │ │ ├── google_beyondcorp_application_iam_policy.json │ │ │ ├── google_beyondcorp_security_gateway.json │ │ │ ├── google_beyondcorp_security_gateway_application_iam_policy.json │ │ │ └── google_beyondcorp_security_gateway_iam_policy.json │ │ ├── bigquery │ │ │ ├── google_app_engine_default_service_account.json │ │ │ ├── google_bigquery_datapolicy_data_policy_iam_policy.json │ │ │ ├── google_bigquery_datapolicyv2_data_policy_iam_policy.json │ │ │ └── google_bigquery_default_service_account.json │ │ ├── bigtable │ │ │ └── google_bigtable_instance_iam_policy.json │ │ ├── binaryauthorization │ │ │ └── google_binary_authorization_attestor_iam_policy.json │ │ ├── certificatemanager │ │ │ ├── google_certificate_manager_certificate_map.json │ │ │ ├── google_certificate_manager_certificates.json │ │ │ └── google_certificate_manager_dns_authorization.json │ │ ├── cloudaicompanion │ │ │ └── google_gemini_repository_group_iam_policy.json │ │ ├── cloudbuild │ │ │ ├── google_cloudbuild_trigger.json │ │ │ └── google_cloudbuildv2_connection_iam_policy.json │ │ ├── clouddeploy │ │ │ ├── google_clouddeploy_custom_target_type_iam_policy.json │ │ │ ├── google_clouddeploy_delivery_pipeline_iam_policy.json │ │ │ └── google_clouddeploy_target_iam_policy.json │ │ ├── cloudfunctions │ │ │ ├── google_cloudfunctions_function.json │ │ │ └── google_cloudfunctions_function_iam_policy.json │ │ ├── cloudkms │ │ │ ├── google_kms_crypto_key.json │ │ │ ├── google_kms_crypto_key_iam_policy.json │ │ │ ├── google_kms_crypto_key_version.json │ │ │ ├── google_kms_ekm_connection_iam_policy.json │ │ │ ├── google_kms_key_handle.json │ │ │ ├── google_kms_key_handles.json │ │ │ ├── google_kms_key_ring.json │ │ │ ├── google_kms_key_ring_iam_policy.json │ │ │ ├── google_kms_key_rings.json │ │ │ ├── google_kms_secret.json │ │ │ └── google_kms_secret_asymmetric.json │ │ ├── cloudsql │ │ │ ├── google_sql_backup_run.json │ │ │ ├── google_sql_database.json │ │ │ ├── google_sql_database_instance.json │ │ │ ├── google_sql_database_instance_latest_recovery_time.json │ │ │ ├── google_sql_database_instances.json │ │ │ └── google_sql_databases.json │ │ ├── cloudtasks │ │ │ └── google_cloud_tasks_queue_iam_policy.json │ │ ├── composer │ │ │ ├── google_composer_environment.json │ │ │ ├── google_composer_image_versions.json │ │ │ ├── google_composer_user_workloads_config_map.json │ │ │ └── google_composer_user_workloads_secret.json │ │ ├── compute │ │ │ ├── google_compute_address.json │ │ │ ├── google_compute_addresses.json │ │ │ ├── google_compute_backend_bucket.json │ │ │ ├── google_compute_backend_bucket_iam_policy.json │ │ │ ├── google_compute_backend_service.json │ │ │ ├── google_compute_backend_service_iam_policy.json │ │ │ ├── google_compute_default_service_account.json │ │ │ ├── google_compute_disk.json │ │ │ ├── google_compute_disk_iam_policy.json │ │ │ ├── google_compute_forwarding_rule.json │ │ │ ├── google_compute_forwarding_rules.json │ │ │ ├── google_compute_global_address.json │ │ │ ├── google_compute_global_forwarding_rule.json │ │ │ ├── google_compute_ha_vpn_gateway.json │ │ │ ├── google_compute_health_check.json │ │ │ ├── google_compute_image_iam_policy.json │ │ │ ├── google_compute_images.json │ │ │ ├── google_compute_instance.json │ │ │ ├── google_compute_instance_group.json │ │ │ ├── google_compute_instance_group_manager.json │ │ │ ├── google_compute_instance_guest_attributes.json │ │ │ ├── google_compute_instance_serial_port.json │ │ │ ├── google_compute_instance_template.json │ │ │ ├── google_compute_instance_template_iam_policy.json │ │ │ ├── google_compute_instant_snapshot_iam_policy.json │ │ │ ├── google_compute_interconnect_location.json │ │ │ ├── google_compute_interconnect_locations.json │ │ │ ├── google_compute_machine_image_iam_policy.json │ │ │ ├── google_compute_machine_types.json │ │ │ ├── google_compute_network.json │ │ │ ├── google_compute_network_attachment.json │ │ │ ├── google_compute_network_endpoint_group.json │ │ │ ├── google_compute_networks.json │ │ │ ├── google_compute_node_types.json │ │ │ ├── google_compute_region_backend_service.json │ │ │ ├── google_compute_region_backend_service_iam_policy.json │ │ │ ├── google_compute_region_disk.json │ │ │ ├── google_compute_region_disk_iam_policy.json │ │ │ ├── google_compute_region_instance_group.json │ │ │ ├── google_compute_region_instance_group_manager.json │ │ │ ├── google_compute_region_instance_template.json │ │ │ ├── google_compute_region_network_endpoint_group.json │ │ │ ├── google_compute_regions.json │ │ │ ├── google_compute_reservation.json │ │ │ ├── google_compute_reservation_block.json │ │ │ ├── google_compute_reservation_sub_block.json │ │ │ ├── google_compute_resource_policy.json │ │ │ ├── google_compute_router.json │ │ │ ├── google_compute_router_nat.json │ │ │ ├── google_compute_router_status.json │ │ │ ├── google_compute_security_policy.json │ │ │ ├── google_compute_snapshot.json │ │ │ ├── google_compute_snapshot_iam_policy.json │ │ │ ├── google_compute_ssl_certificate.json │ │ │ ├── google_compute_ssl_policy.json │ │ │ ├── google_compute_storage_pool_iam_policy.json │ │ │ ├── google_compute_storage_pool_types.json │ │ │ ├── google_compute_subnetwork.json │ │ │ ├── google_compute_subnetwork_iam_policy.json │ │ │ ├── google_compute_subnetworks.json │ │ │ ├── google_compute_vpn_gateway.json │ │ │ └── google_compute_zones.json │ │ ├── container │ │ │ └── google_container_cluster.json │ │ ├── containeranalysis │ │ │ └── google_container_analysis_note_iam_policy.json │ │ ├── datacatalog │ │ │ └── google_data_catalog_taxonomy_iam_policy.json │ │ ├── dataform │ │ │ └── google_dataform_repository_iam_policy.json │ │ ├── datafusion │ │ │ └── google_data_fusion_instance_iam_policy.json │ │ ├── dataplex │ │ │ ├── google_dataplex_aspect_type_iam_policy.json │ │ │ ├── google_dataplex_asset_iam_policy.json │ │ │ ├── google_dataplex_data_quality_rules.json │ │ │ ├── google_dataplex_datascan_iam_policy.json │ │ │ ├── google_dataplex_entry_group_iam_policy.json │ │ │ ├── google_dataplex_entry_type_iam_policy.json │ │ │ ├── google_dataplex_glossary_iam_policy.json │ │ │ ├── google_dataplex_lake_iam_policy.json │ │ │ ├── google_dataplex_task_iam_policy.json │ │ │ └── google_dataplex_zone_iam_policy.json │ │ ├── datastream │ │ │ └── google_datastream_static_ips.json │ │ ├── dns │ │ │ ├── google_dns_keys.json │ │ │ ├── google_dns_managed_zone.json │ │ │ ├── google_dns_managed_zone_iam_policy.json │ │ │ ├── google_dns_managed_zones.json │ │ │ └── google_dns_record_set.json │ │ ├── file │ │ │ └── google_filestore_instance.json │ │ ├── gkebackup │ │ │ ├── google_gke_backup_backup_plan_iam_policy.json │ │ │ └── google_gke_backup_restore_plan_iam_policy.json │ │ ├── gkehub │ │ │ ├── google_gke_hub_feature.json │ │ │ ├── google_gke_hub_feature_iam_policy.json │ │ │ ├── google_gke_hub_membership.json │ │ │ ├── google_gke_hub_membership_iam_policy.json │ │ │ └── google_gke_hub_scope_iam_policy.json │ │ ├── gkemulticloud │ │ │ ├── google_container_attached_install_manifest.json │ │ │ ├── google_container_attached_versions.json │ │ │ ├── google_container_aws_versions.json │ │ │ └── google_container_azure_versions.json │ │ ├── healthcare │ │ │ ├── google_healthcare_consent_store_iam_policy.json │ │ │ ├── google_healthcare_dataset_iam_policy.json │ │ │ ├── google_healthcare_dicom_store_iam_policy.json │ │ │ ├── google_healthcare_fhir_store_iam_policy.json │ │ │ └── google_healthcare_hl7_v2_store_iam_policy.json │ │ ├── iam.googleapis.com │ │ │ ├── google_iam_workforce_pool_iam_policy.json │ │ │ ├── google_iam_workload_identity_pool.json │ │ │ ├── google_iam_workload_identity_pool_iam_policy.json │ │ │ └── google_iam_workload_identity_pool_provider.json │ │ ├── iam │ │ │ ├── google_organization_iam_custom_role.json │ │ │ ├── google_organization_iam_custom_roles.json │ │ │ ├── google_project_iam_custom_role.json │ │ │ ├── google_project_iam_custom_roles.json │ │ │ ├── google_service_account.json │ │ │ ├── google_service_account_access_token.json │ │ │ ├── google_service_account_iam_policy.json │ │ │ ├── google_service_account_jwt.json │ │ │ ├── google_service_account_key.json │ │ │ └── google_service_accounts.json │ │ ├── iap │ │ │ ├── google_iap_app_engine_service_iam_policy.json │ │ │ ├── google_iap_app_engine_version_iam_policy.json │ │ │ ├── google_iap_tunnel_dest_group_iam_policy.json │ │ │ ├── google_iap_tunnel_iam_policy.json │ │ │ ├── google_iap_tunnel_instance_iam_policy.json │ │ │ ├── google_iap_web_backend_service_iam_policy.json │ │ │ ├── google_iap_web_cloud_run_service_iam_policy.json │ │ │ ├── google_iap_web_forwarding_rule_service_iam_policy.json │ │ │ ├── google_iap_web_iam_policy.json │ │ │ ├── google_iap_web_region_backend_service_iam_policy.json │ │ │ ├── google_iap_web_region_forwarding_rule_service_iam_policy.json │ │ │ ├── google_iap_web_type_app_engine_iam_policy.json │ │ │ └── google_iap_web_type_compute_iam_policy.json │ │ ├── logging │ │ │ ├── google_logging_project_cmek_settings.json │ │ │ └── google_logging_project_settings.json │ │ ├── lustre │ │ │ └── google_lustre_instance.json │ │ ├── memcache │ │ │ └── google_memcache_instance.json │ │ ├── memorystore │ │ │ └── google_memorystore_instance.json │ │ ├── metastore │ │ │ ├── google_dataproc_metastore_database_iam_policy.json │ │ │ ├── google_dataproc_metastore_federation_iam_policy.json │ │ │ ├── google_dataproc_metastore_service.json │ │ │ ├── google_dataproc_metastore_service_iam_policy.json │ │ │ └── google_dataproc_metastore_table_iam_policy.json │ │ ├── monitoring │ │ │ ├── google_monitoring_app_engine_service.json │ │ │ ├── google_monitoring_cluster_istio_service.json │ │ │ ├── google_monitoring_istio_canonical_service.json │ │ │ ├── google_monitoring_mesh_istio_service.json │ │ │ └── google_monitoring_notification_channel.json │ │ ├── networksecurity │ │ │ └── google_network_security_address_group_iam_policy.json │ │ ├── notebooks │ │ │ ├── google_notebooks_instance_iam_policy.json │ │ │ ├── google_notebooks_runtime_iam_policy.json │ │ │ └── google_workbench_instance_iam_policy.json │ │ ├── oracledatabase │ │ │ ├── google_oracle_database_autonomous_database.json │ │ │ ├── google_oracle_database_autonomous_databases.json │ │ │ ├── google_oracle_database_cloud_exadata_infrastructure.json │ │ │ ├── google_oracle_database_cloud_exadata_infrastructures.json │ │ │ ├── google_oracle_database_cloud_vm_cluster.json │ │ │ ├── google_oracle_database_cloud_vm_clusters.json │ │ │ ├── google_oracle_database_db_nodes.json │ │ │ └── google_oracle_database_db_servers.json │ │ ├── orgpolicy │ │ │ └── google_project_organization_policy.json │ │ ├── parametermanager │ │ │ ├── google_parameter_manager_parameter.json │ │ │ ├── google_parameter_manager_parameter_version.json │ │ │ ├── google_parameter_manager_parameter_version_render.json │ │ │ ├── google_parameter_manager_parameters.json │ │ │ ├── google_parameter_manager_regional_parameter.json │ │ │ ├── google_parameter_manager_regional_parameter_version.json │ │ │ ├── google_parameter_manager_regional_parameter_version_render.json │ │ │ └── google_parameter_manager_regional_parameters.json │ │ ├── privateca │ │ │ ├── google_privateca_ca_pool_iam_policy.json │ │ │ ├── google_privateca_certificate_authority.json │ │ │ └── google_privateca_certificate_template_iam_policy.json │ │ ├── privilegedaccessmanager │ │ │ └── google_privileged_access_manager_entitlement.json │ │ ├── pubsub │ │ │ ├── google_kms_secret_asymmetric.json │ │ │ ├── google_pubsub_schema_iam_policy.json │ │ │ ├── google_pubsub_subscription.json │ │ │ ├── google_pubsub_subscription_iam_policy.json │ │ │ ├── google_pubsub_topic.json │ │ │ └── google_pubsub_topic_iam_policy.json │ │ ├── redis │ │ │ ├── google_redis_cluster.json │ │ │ └── google_redis_instance.json │ │ ├── resourcemanager │ │ │ ├── google_folder.json │ │ │ ├── google_folder_iam_policy.json │ │ │ ├── google_folders.json │ │ │ ├── google_organization_iam_policy.json │ │ │ ├── google_project.json │ │ │ ├── google_project_ancestry.json │ │ │ ├── google_project_iam_policy.json │ │ │ ├── google_project_service.json │ │ │ ├── google_storage_project_service_account.json │ │ │ ├── google_tags_tag_key.json │ │ │ ├── google_tags_tag_key_iam_policy.json │ │ │ ├── google_tags_tag_keys.json │ │ │ ├── google_tags_tag_value.json │ │ │ ├── google_tags_tag_value_iam_policy.json │ │ │ └── google_tags_tag_values.json │ │ ├── run │ │ │ ├── google_cloud_run_locations.json │ │ │ ├── google_cloud_run_service.json │ │ │ ├── google_cloud_run_service_iam_policy.json │ │ │ ├── google_cloud_run_v2_job.json │ │ │ ├── google_cloud_run_v2_job_iam_policy.json │ │ │ ├── google_cloud_run_v2_service.json │ │ │ ├── google_cloud_run_v2_service_iam_policy.json │ │ │ ├── google_cloud_run_v2_worker_pool.json │ │ │ └── google_cloud_run_v2_worker_pool_iam_policy.json │ │ ├── runtimeconfig │ │ │ ├── google_runtimeconfig_config.json │ │ │ ├── google_runtimeconfig_config_iam_policy.json │ │ │ └── google_runtimeconfig_variable.json │ │ ├── secretmanager │ │ │ ├── google_secret_manager_regional_secret.json │ │ │ ├── google_secret_manager_regional_secret_iam_policy.json │ │ │ ├── google_secret_manager_regional_secret_version.json │ │ │ ├── google_secret_manager_regional_secret_version_access.json │ │ │ ├── google_secret_manager_regional_secrets.json │ │ │ ├── google_secret_manager_secret.json │ │ │ ├── google_secret_manager_secret_iam_policy.json │ │ │ ├── google_secret_manager_secret_version.json │ │ │ ├── google_secret_manager_secret_version_access.json │ │ │ └── google_secret_manager_secrets.json │ │ ├── securesourcemanager │ │ │ ├── google_secure_source_manager_instance_iam_policy.json │ │ │ └── google_secure_source_manager_repository_iam_policy.json │ │ ├── securitycenter │ │ │ ├── google_scc_source_iam_policy.json │ │ │ └── google_scc_v2_organization_source_iam_policy.json │ │ ├── servicedirectory │ │ │ ├── google_service_directory_namespace_iam_policy.json │ │ │ └── google_service_directory_service_iam_policy.json │ │ ├── servicemanagement │ │ │ └── google_endpoints_service_iam_policy.json │ │ ├── source │ │ │ ├── google_sourcerepo_repository.json │ │ │ └── google_sourcerepo_repository_iam_policy.json │ │ ├── spanner │ │ │ ├── google_spanner_database.json │ │ │ ├── google_spanner_database_iam_policy.json │ │ │ ├── google_spanner_instance.json │ │ │ └── google_spanner_instance_iam_policy.json │ │ ├── storage │ │ │ ├── google_storage_bucket.json │ │ │ ├── google_storage_bucket_iam_member.json │ │ │ ├── google_storage_bucket_iam_policy.json │ │ │ ├── google_storage_bucket_object.json │ │ │ ├── google_storage_bucket_object_content.json │ │ │ ├── google_storage_bucket_objects.json │ │ │ ├── google_storage_buckets.json │ │ │ ├── google_storage_control_folder_intelligence_config.json │ │ │ ├── google_storage_control_organization_intelligence_config.json │ │ │ └── google_storage_control_project_intelligence_config.json │ │ ├── storageinsights │ │ │ └── google_storage_insights_dataset_config.json │ │ ├── storagetransfer │ │ │ └── google_storage_transfer_project_service_account.json │ │ ├── tags │ │ │ └── google_tags_tag_value_iam_policy.json │ │ ├── template.json │ │ ├── tpu │ │ │ ├── google_tpu_tensorflow_versions.json │ │ │ ├── google_tpu_v2_accelerator_types.json │ │ │ └── google_tpu_v2_runtime_versions.json │ │ ├── vmwareengine │ │ │ ├── google_vmwareengine_external_address.json │ │ │ ├── google_vmwareengine_network.json │ │ │ ├── google_vmwareengine_network_peering.json │ │ │ ├── google_vmwareengine_network_policy.json │ │ │ ├── google_vmwareengine_nsx_credentials.json │ │ │ ├── google_vmwareengine_private_cloud.json │ │ │ ├── google_vmwareengine_subnet.json │ │ │ └── google_vmwareengine_vcenter_credentials.json │ │ ├── vpcaccess │ │ │ └── google_vpc_access_connector.json │ │ └── workstations │ │ │ ├── google_workstations_workstation_config_iam_policy.json │ │ │ └── google_workstations_workstation_iam_policy.json │ │ └── resource │ │ ├── accessapproval │ │ └── google_project_access_approval_settings.json │ │ ├── accesscontextmanager │ │ ├── google_access_context_manager_access_level.json │ │ ├── google_access_context_manager_access_levels.json │ │ ├── google_access_context_manager_access_policy.json │ │ ├── google_access_context_manager_access_policy_iam.json │ │ ├── google_access_context_manager_authorized_orgs_desc.json │ │ ├── google_access_context_manager_gcp_user_access_binding.json │ │ ├── google_access_context_manager_service_perimeter.json │ │ └── google_access_context_manager_service_perimeters.json │ │ ├── aiplatform │ │ ├── google_colab_runtime_template_iam_binding.json │ │ ├── google_colab_runtime_template_iam_member.json │ │ ├── google_colab_runtime_template_iam_policy.json │ │ ├── google_vertex_ai_cache_config.json │ │ ├── google_vertex_ai_dataset.json │ │ ├── google_vertex_ai_deployment_resource_pool.json │ │ ├── google_vertex_ai_endpoint.json │ │ ├── google_vertex_ai_endpoint_iam.json │ │ ├── google_vertex_ai_endpoint_iam_policy.json │ │ ├── google_vertex_ai_endpoint_with_model_garden_deployment.json │ │ ├── google_vertex_ai_feature_group.json │ │ ├── google_vertex_ai_feature_group_feature.json │ │ ├── google_vertex_ai_feature_group_iam_binding.json │ │ ├── google_vertex_ai_feature_group_iam_member.json │ │ ├── google_vertex_ai_feature_group_iam_policy.json │ │ ├── google_vertex_ai_feature_online_store.json │ │ ├── google_vertex_ai_feature_online_store_featureview.json │ │ ├── google_vertex_ai_feature_online_store_featureview_iam_binding.json │ │ ├── google_vertex_ai_feature_online_store_featureview_iam_member.json │ │ ├── google_vertex_ai_feature_online_store_featureview_iam_policy.json │ │ ├── google_vertex_ai_feature_online_store_iam_binding.json │ │ ├── google_vertex_ai_feature_online_store_iam_member.json │ │ ├── google_vertex_ai_feature_online_store_iam_policy.json │ │ ├── google_vertex_ai_featurestore.json │ │ ├── google_vertex_ai_featurestore_entitytype.json │ │ ├── google_vertex_ai_featurestore_entitytype_feature.json │ │ ├── google_vertex_ai_featurestore_entitytype_iam.json │ │ ├── google_vertex_ai_featurestore_entitytype_iam_policy.json │ │ ├── google_vertex_ai_featurestore_iam.json │ │ ├── google_vertex_ai_featurestore_iam_policy.json │ │ ├── google_vertex_ai_index.json │ │ ├── google_vertex_ai_index_endpoint.json │ │ ├── google_vertex_ai_index_endpoint_deployed_index.json │ │ ├── google_vertex_ai_metadata_store.json │ │ ├── google_vertex_ai_rag_engine_config.json │ │ ├── google_vertex_ai_reasoning_engine.json │ │ └── google_vertex_ai_tensorboard.json │ │ ├── alloydb │ │ ├── google_alloydb_backup.json │ │ ├── google_alloydb_cluster.json │ │ ├── google_alloydb_instance.json │ │ └── google_alloydb_user.json │ │ ├── analyticshub │ │ ├── google_bigquery_analytics_hub_data_exchange.json │ │ ├── google_bigquery_analytics_hub_data_exchange_iam.json │ │ ├── google_bigquery_analytics_hub_listing.json │ │ ├── google_bigquery_analytics_hub_listing_iam.json │ │ └── google_bigquery_analytics_hub_listing_subscription.json │ │ ├── apigateway │ │ ├── google_api_gateway_api.json │ │ ├── google_api_gateway_api_config.json │ │ ├── google_api_gateway_api_config_iam.json │ │ ├── google_api_gateway_api_iam.json │ │ ├── google_api_gateway_gateway.json │ │ └── google_api_gateway_gateway_iam.json │ │ ├── apigee │ │ ├── google_apigee_environment_iam_binding.json │ │ ├── google_apigee_environment_iam_member.json │ │ └── google_apigee_environment_iam_policy.json │ │ ├── apihub │ │ ├── google_apihub_api_hub_instance.json │ │ ├── google_apihub_curation.json │ │ ├── google_apihub_host_project_registration.json │ │ ├── google_apihub_plugin.json │ │ └── google_apihub_plugin_instance.json │ │ ├── apphub │ │ ├── google_apphub_application.json │ │ ├── google_apphub_service.json │ │ ├── google_apphub_service_project_attachment.json │ │ └── google_apphub_workload.json │ │ ├── artifactregistry │ │ ├── google_artifact_registry_repository.json │ │ ├── google_artifact_registry_repository_iam_binding.json │ │ ├── google_artifact_registry_repository_iam_member.json │ │ └── google_artifact_registry_repository_iam_policy.json │ │ ├── backend │ │ └── gcs.json │ │ ├── backupdr │ │ ├── google_backup_dr_backup_plan.json │ │ ├── google_backup_dr_backup_plan_association.json │ │ ├── google_backup_dr_backup_vault.json │ │ ├── google_backup_dr_management_server.json │ │ └── google_backup_dr_service_config.json │ │ ├── beyondcorp │ │ ├── google_beyondcorp_app_connection.json │ │ ├── google_beyondcorp_app_connector.json │ │ ├── google_beyondcorp_app_gateway.json │ │ ├── google_beyondcorp_application.json │ │ ├── google_beyondcorp_application_iam_binding.json │ │ ├── google_beyondcorp_application_iam_member.json │ │ ├── google_beyondcorp_application_iam_policy.json │ │ ├── google_beyondcorp_security_gateway.json │ │ ├── google_beyondcorp_security_gateway_application.json │ │ ├── google_beyondcorp_security_gateway_application_iam_binding.json │ │ ├── google_beyondcorp_security_gateway_application_iam_member.json │ │ ├── google_beyondcorp_security_gateway_application_iam_policy.json │ │ ├── google_beyondcorp_security_gateway_iam_binding.json │ │ ├── google_beyondcorp_security_gateway_iam_member.json │ │ └── google_beyondcorp_security_gateway_iam_policy.json │ │ ├── biglake │ │ ├── google_biglake_catalog.json │ │ ├── google_biglake_database.json │ │ └── google_biglake_table.json │ │ ├── bigquery │ │ ├── google_bigquery_bi_reservation.json │ │ ├── google_bigquery_capacity_commitment.json │ │ ├── google_bigquery_connection.json │ │ ├── google_bigquery_connection_iam.json │ │ ├── google_bigquery_data_transfer_config.json │ │ ├── google_bigquery_dataset.json │ │ ├── google_bigquery_dataset_access.json │ │ ├── google_bigquery_dataset_iam.json │ │ ├── google_bigquery_job.json │ │ ├── google_bigquery_reservation.json │ │ ├── google_bigquery_reservation_assignment.json │ │ ├── google_bigquery_routine.json │ │ ├── google_bigquery_row_access_policy.json │ │ ├── google_bigquery_table.json │ │ └── google_bigquery_table_iam.json │ │ ├── bigtable │ │ ├── google_bigtable_app_profile.json │ │ ├── google_bigtable_authorized_view.json │ │ ├── google_bigtable_gc_policy.json │ │ ├── google_bigtable_instance.json │ │ ├── google_bigtable_instance_iam.json │ │ ├── google_bigtable_logical_view.json │ │ ├── google_bigtable_materialized_view.json │ │ ├── google_bigtable_schema_bundle.json │ │ ├── google_bigtable_table.json │ │ └── google_bigtable_table_iam.json │ │ ├── billing │ │ ├── google_billing_account_iam_binding.json │ │ ├── google_billing_account_iam_member.json │ │ ├── google_billing_account_iam_policy.json │ │ └── google_billing_budget.json │ │ ├── binaryauthorization │ │ ├── google_binary_authorization_attestor_iam_binding.json │ │ ├── google_binary_authorization_attestor_iam_member.json │ │ └── google_binary_authorization_attestor_iam_policy.json │ │ ├── certificatemanager │ │ └── google_certificate_manager_dns_authorization.json │ │ ├── chronicle │ │ ├── google_chronicle_data_access_label.json │ │ ├── google_chronicle_data_access_scope.json │ │ ├── google_chronicle_reference_list.json │ │ ├── google_chronicle_retrohunt.json │ │ ├── google_chronicle_rule.json │ │ ├── google_chronicle_rule_deployment.json │ │ └── google_chronicle_watchlist.json │ │ ├── cloudaicompanion │ │ ├── google_gemini_code_repository_index.json │ │ ├── google_gemini_code_tools_setting.json │ │ ├── google_gemini_code_tools_setting_binding.json │ │ ├── google_gemini_data_sharing_with_google_setting.json │ │ ├── google_gemini_data_sharing_with_google_setting_binding.json │ │ ├── google_gemini_gemini_gcp_enablement_setting.json │ │ ├── google_gemini_gemini_gcp_enablement_setting_binding.json │ │ ├── google_gemini_logging_setting.json │ │ ├── google_gemini_logging_setting_binding.json │ │ ├── google_gemini_release_channel_setting.json │ │ ├── google_gemini_release_channel_setting_binding.json │ │ ├── google_gemini_repository_group.json │ │ ├── google_gemini_repository_group_iam_binding.json │ │ ├── google_gemini_repository_group_iam_member.json │ │ └── google_gemini_repository_group_iam_policy.json │ │ ├── cloudbuild │ │ ├── google_cloudbuild_trigger.json │ │ ├── google_cloudbuildv2_connection.json │ │ ├── google_cloudbuildv2_connection_iam_binding.json │ │ ├── google_cloudbuildv2_connection_iam_member.json │ │ ├── google_cloudbuildv2_connection_iam_policy.json │ │ └── google_cloudbuildv2_repository.json │ │ ├── clouddeploy │ │ ├── google_clouddeploy_custom_target_type_iam_binding.json │ │ ├── google_clouddeploy_custom_target_type_iam_member.json │ │ ├── google_clouddeploy_custom_target_type_iam_policy.json │ │ ├── google_clouddeploy_delivery_pipeline_iam_binding.json │ │ ├── google_clouddeploy_delivery_pipeline_iam_member.json │ │ ├── google_clouddeploy_delivery_pipeline_iam_policy.json │ │ ├── google_clouddeploy_target_iam_binding.json │ │ ├── google_clouddeploy_target_iam_member.json │ │ └── google_clouddeploy_target_iam_policy.json │ │ ├── cloudfunctions │ │ ├── google_cloudfunctions2_function.json │ │ ├── google_cloudfunctions2_function_iam_binding.json │ │ ├── google_cloudfunctions2_function_iam_member.json │ │ ├── google_cloudfunctions2_function_iam_policy.json │ │ ├── google_cloudfunctions_function.json │ │ ├── google_cloudfunctions_function_iam_binding.json │ │ └── google_cloudfunctions_function_iam_policy.json │ │ ├── cloudkms │ │ ├── google_kms_crypto_key.json │ │ ├── google_kms_crypto_key_iam_binding.json │ │ ├── google_kms_crypto_key_iam_member.json │ │ ├── google_kms_crypto_key_iam_policy.json │ │ ├── google_kms_crypto_key_version.json │ │ ├── google_kms_key_handle.json │ │ ├── google_kms_key_ring.json │ │ ├── google_kms_key_ring_iam_binding.json │ │ ├── google_kms_key_ring_iam_member.json │ │ ├── google_kms_key_ring_iam_policy.json │ │ ├── google_kms_key_ring_import_job.json │ │ └── google_kms_secret_ciphertext.json │ │ ├── cloudscheduler │ │ └── google_cloud_scheduler_job.json │ │ ├── cloudsql │ │ ├── google_sql_database.json │ │ ├── google_sql_database_instance.json │ │ ├── google_sql_ssl_cert.json │ │ └── google_sql_user.json │ │ ├── cloudtasks │ │ ├── google_cloud_tasks_queue_iam_binding.json │ │ ├── google_cloud_tasks_queue_iam_member.json │ │ └── google_cloud_tasks_queue_iam_policy.json │ │ ├── composer │ │ ├── google_composer_environment.json │ │ ├── google_composer_user_workloads_config_map.json │ │ └── google_composer_user_workloads_secret.json │ │ ├── compute │ │ ├── google_compute_address.json │ │ ├── google_compute_backend_bucket.json │ │ ├── google_compute_backend_bucket_iam_binding.json │ │ ├── google_compute_backend_bucket_iam_member.json │ │ ├── google_compute_backend_bucket_iam_policy.json │ │ ├── google_compute_backend_service.json │ │ ├── google_compute_backend_service_iam_binding.json │ │ ├── google_compute_backend_service_iam_member.json │ │ ├── google_compute_backend_service_iam_policy.json │ │ ├── google_compute_disk_iam_binding.json │ │ ├── google_compute_disk_iam_member.json │ │ ├── google_compute_disk_iam_policy.json │ │ ├── google_compute_firewall.json │ │ ├── google_compute_forwarding_rule.json │ │ ├── google_compute_global_address.json │ │ ├── google_compute_global_forwarding_rule.json │ │ ├── google_compute_global_network_endpoint_group.json │ │ ├── google_compute_health_check.json │ │ ├── google_compute_http_health_check.json │ │ ├── google_compute_https_health_check.json │ │ ├── google_compute_image_iam_binding.json │ │ ├── google_compute_image_iam_member.json │ │ ├── google_compute_image_iam_policy.json │ │ ├── google_compute_instance.json │ │ ├── google_compute_instance_iam_binding.json │ │ ├── google_compute_instance_iam_member.json │ │ ├── google_compute_instance_iam_policy.json │ │ ├── google_compute_instance_template.json │ │ ├── google_compute_instance_template_iam_binding.json │ │ ├── google_compute_instance_template_iam_member.json │ │ ├── google_compute_instance_template_iam_policy.json │ │ ├── google_compute_instant_snapshot_iam_binding.json │ │ ├── google_compute_instant_snapshot_iam_member.json │ │ ├── google_compute_instant_snapshot_iam_policy.json │ │ ├── google_compute_machine_image_iam_binding.json │ │ ├── google_compute_machine_image_iam_member.json │ │ ├── google_compute_machine_image_iam_policy.json │ │ ├── google_compute_network.json │ │ ├── google_compute_network_attachment.json │ │ ├── google_compute_network_endpoint_group.json │ │ ├── google_compute_project_metadata_item.json │ │ ├── google_compute_region_backend_service.json │ │ ├── google_compute_region_backend_service_iam_binding.json │ │ ├── google_compute_region_backend_service_iam_member.json │ │ ├── google_compute_region_backend_service_iam_policy.json │ │ ├── google_compute_region_disk_iam_binding.json │ │ ├── google_compute_region_disk_iam_member.json │ │ ├── google_compute_region_disk_iam_policy.json │ │ ├── google_compute_region_health_check.json │ │ ├── google_compute_region_network_endpoint_group.json │ │ ├── google_compute_region_ssl_certificate.json │ │ ├── google_compute_region_target_http_proxy.json │ │ ├── google_compute_region_target_https_proxy.json │ │ ├── google_compute_region_target_tcp_proxy.json │ │ ├── google_compute_region_url_map.json │ │ ├── google_compute_security_policy.json │ │ ├── google_compute_snapshot_iam_binding.json │ │ ├── google_compute_snapshot_iam_member.json │ │ ├── google_compute_snapshot_iam_policy.json │ │ ├── google_compute_storage_pool_iam_binding.json │ │ ├── google_compute_storage_pool_iam_member.json │ │ ├── google_compute_storage_pool_iam_policy.json │ │ ├── google_compute_subnetwork.json │ │ ├── google_compute_subnetwork_iam_binding.json │ │ ├── google_compute_subnetwork_iam_member.json │ │ ├── google_compute_subnetwork_iam_policy.json │ │ ├── google_compute_target_http_proxy.json │ │ ├── google_compute_target_https_proxy.json │ │ ├── google_compute_url_map.json │ │ └── google_project_usage_export_bucket.json │ │ ├── contactcenterinsights │ │ ├── google_contact_center_insights_analysis_rule.json │ │ └── google_contact_center_insights_view.json │ │ ├── container │ │ ├── google_container_cluster.json │ │ └── google_container_node_pool.json │ │ ├── containeranalysis │ │ ├── google_container_analysis_note_iam_binding.json │ │ ├── google_container_analysis_note_iam_member.json │ │ └── google_container_analysis_note_iam_policy.json │ │ ├── datacatalog │ │ ├── google_bigquery_datapolicy_data_policy.json │ │ ├── google_bigquery_datapolicy_data_policy_iam_binding.json │ │ ├── google_bigquery_datapolicy_data_policy_iam_member.json │ │ ├── google_bigquery_datapolicy_data_policy_iam_policy.json │ │ ├── google_data_catalog_entry.json │ │ ├── google_data_catalog_entry_group.json │ │ ├── google_data_catalog_entry_group_iam_binding.json │ │ ├── google_data_catalog_entry_group_iam_member.json │ │ ├── google_data_catalog_entry_group_iam_policy.json │ │ ├── google_data_catalog_policy_tag.json │ │ ├── google_data_catalog_policy_tag_iam_binding.json │ │ ├── google_data_catalog_policy_tag_iam_member.json │ │ ├── google_data_catalog_policy_tag_iam_policy.json │ │ ├── google_data_catalog_tag.json │ │ ├── google_data_catalog_tag_template.json │ │ ├── google_data_catalog_tag_template_iam_binding.json │ │ ├── google_data_catalog_tag_template_iam_member.json │ │ ├── google_data_catalog_tag_template_iam_policy.json │ │ ├── google_data_catalog_taxonomy.json │ │ ├── google_data_catalog_taxonomy_iam_binding.json │ │ ├── google_data_catalog_taxonomy_iam_member.json │ │ └── google_data_catalog_taxonomy_iam_policy.json │ │ ├── dataflow │ │ └── google_dataflow_job.json │ │ ├── dataform │ │ ├── google_dataform_repository.json │ │ ├── google_dataform_repository_iam_binding.json │ │ ├── google_dataform_repository_iam_member.json │ │ ├── google_dataform_repository_iam_policy.json │ │ ├── google_dataform_repository_release_config.json │ │ └── google_dataform_repository_workflow_config.json │ │ ├── datafusion │ │ ├── google_data_fusion_instance_iam_binding.json │ │ ├── google_data_fusion_instance_iam_member.json │ │ └── google_data_fusion_instance_iam_policy.json │ │ ├── dataplex │ │ ├── google_dataplex_aspect_type.json │ │ ├── google_dataplex_aspect_type_iam_binding.json │ │ ├── google_dataplex_aspect_type_iam_member.json │ │ ├── google_dataplex_aspect_type_iam_policy.json │ │ ├── google_dataplex_asset.json │ │ ├── google_dataplex_asset_iam_binding.json │ │ ├── google_dataplex_asset_iam_member.json │ │ ├── google_dataplex_asset_iam_policy.json │ │ ├── google_dataplex_datascan.json │ │ ├── google_dataplex_datascan_iam_binding.json │ │ ├── google_dataplex_datascan_iam_member.json │ │ ├── google_dataplex_datascan_iam_policy.json │ │ ├── google_dataplex_entry.json │ │ ├── google_dataplex_entry_group.json │ │ ├── google_dataplex_entry_group_iam_binding.json │ │ ├── google_dataplex_entry_group_iam_member.json │ │ ├── google_dataplex_entry_group_iam_policy.json │ │ ├── google_dataplex_entry_type.json │ │ ├── google_dataplex_entry_type_iam_binding.json │ │ ├── google_dataplex_entry_type_iam_member.json │ │ ├── google_dataplex_entry_type_iam_policy.json │ │ ├── google_dataplex_glossary.json │ │ ├── google_dataplex_glossary_category.json │ │ ├── google_dataplex_glossary_iam_binding.json │ │ ├── google_dataplex_glossary_iam_member.json │ │ ├── google_dataplex_glossary_iam_policy.json │ │ ├── google_dataplex_glossary_term.json │ │ ├── google_dataplex_lake.json │ │ ├── google_dataplex_lake_iam_binding.json │ │ ├── google_dataplex_lake_iam_member.json │ │ ├── google_dataplex_lake_iam_policy.json │ │ ├── google_dataplex_task.json │ │ ├── google_dataplex_task_iam_binding.json │ │ ├── google_dataplex_task_iam_member.json │ │ ├── google_dataplex_task_iam_policy.json │ │ ├── google_dataplex_zone.json │ │ ├── google_dataplex_zone_iam_binding.json │ │ ├── google_dataplex_zone_iam_member.json │ │ └── google_dataplex_zone_iam_policy.json │ │ ├── dataproc │ │ ├── google_dataproc_autoscaling_policy.json │ │ ├── google_dataproc_autoscaling_policy_iam_binding.json │ │ ├── google_dataproc_autoscaling_policy_iam_member.json │ │ ├── google_dataproc_autoscaling_policy_iam_policy.json │ │ ├── google_dataproc_batch.json │ │ ├── google_dataproc_cluster.json │ │ ├── google_dataproc_cluster_iam_binding.json │ │ ├── google_dataproc_cluster_iam_member.json │ │ ├── google_dataproc_cluster_iam_policy.json │ │ ├── google_dataproc_job.json │ │ ├── google_dataproc_job_iam_binding.json │ │ ├── google_dataproc_job_iam_member.json │ │ ├── google_dataproc_job_iam_policy.json │ │ ├── google_dataproc_session_template.json │ │ └── google_dataproc_workflow_template.json │ │ ├── deploymentmanager │ │ └── google_deployment_manager_deployment.json │ │ ├── developerconnect │ │ ├── google_developer_connect_account_connector.json │ │ ├── google_developer_connect_connection.json │ │ └── google_developer_connect_git_repository_link.json │ │ ├── dialogflow │ │ ├── google_dialogflow_agent.json │ │ ├── google_dialogflow_conversation_profile.json │ │ ├── google_dialogflow_cx_agent.json │ │ ├── google_dialogflow_cx_entity_type.json │ │ ├── google_dialogflow_cx_environment.json │ │ ├── google_dialogflow_cx_flow.json │ │ ├── google_dialogflow_cx_generative_settings.json │ │ ├── google_dialogflow_cx_generator.json │ │ ├── google_dialogflow_cx_intent.json │ │ ├── google_dialogflow_cx_page.json │ │ ├── google_dialogflow_cx_playbook.json │ │ ├── google_dialogflow_cx_security_settings.json │ │ ├── google_dialogflow_cx_tool.json │ │ ├── google_dialogflow_cx_version.json │ │ ├── google_dialogflow_cx_webhook.json │ │ ├── google_dialogflow_encryption_spec.json │ │ ├── google_dialogflow_entity_type.json │ │ ├── google_dialogflow_fulfillment.json │ │ └── google_dialogflow_intent.json │ │ ├── dns │ │ ├── google_dns_managed_zone.json │ │ ├── google_dns_managed_zone_iam_binding.json │ │ ├── google_dns_managed_zone_iam_member.json │ │ ├── google_dns_managed_zone_iam_policy.json │ │ ├── google_dns_policy.json │ │ ├── google_dns_record_set.json │ │ ├── google_dns_response_policy.json │ │ └── google_dns_response_policy_rule.json │ │ ├── edgecontainer │ │ ├── google_edgecontainer_cluster.json │ │ ├── google_edgecontainer_node_pool.json │ │ └── google_edgecontainer_vpn_connection.json │ │ ├── edgenetwork │ │ ├── google_edgenetwork_interconnect_attachment.json │ │ ├── google_edgenetwork_network.json │ │ └── google_edgenetwork_subnet.json │ │ ├── eventarc │ │ ├── google_eventarc_channel.json │ │ ├── google_eventarc_enrollment.json │ │ ├── google_eventarc_google_api_source.json │ │ ├── google_eventarc_google_channel_config.json │ │ ├── google_eventarc_message_bus.json │ │ ├── google_eventarc_pipeline.json │ │ └── google_eventarc_trigger.json │ │ ├── firebase │ │ ├── google_firebase_android_app.json │ │ ├── google_firebase_apple_app.json │ │ ├── google_firebase_project.json │ │ └── google_firebase_web_app.json │ │ ├── firebasedatabase │ │ └── google_firebase_database_instance.json │ │ ├── firebasehosting │ │ └── google_firebase_hosting_site.json │ │ ├── firebaserules │ │ ├── google_firebaserules_release.json │ │ └── google_firebaserules_ruleset.json │ │ ├── firebasestorage │ │ └── google_firebase_storage_bucket.json │ │ ├── gkebackup │ │ ├── google_gke_backup_backup_plan_iam_binding.json │ │ ├── google_gke_backup_backup_plan_iam_member.json │ │ ├── google_gke_backup_backup_plan_iam_policy.json │ │ ├── google_gke_backup_restore_plan_iam_binding.json │ │ ├── google_gke_backup_restore_plan_iam_member.json │ │ └── google_gke_backup_restore_plan_iam_policy.json │ │ ├── gkehub │ │ ├── google_gke_hub_feature_iam_binding.json │ │ ├── google_gke_hub_feature_iam_member.json │ │ ├── google_gke_hub_feature_iam_policy.json │ │ ├── google_gke_hub_membership_iam_binding.json │ │ ├── google_gke_hub_membership_iam_member.json │ │ ├── google_gke_hub_membership_iam_policy.json │ │ ├── google_gke_hub_scope_iam_binding.json │ │ ├── google_gke_hub_scope_iam_member.json │ │ └── google_gke_hub_scope_iam_policy.json │ │ ├── google_apigee_environment.json │ │ ├── healthcare │ │ ├── google_healthcare_consent_store_iam_binding.json │ │ ├── google_healthcare_consent_store_iam_member.json │ │ ├── google_healthcare_consent_store_iam_policy.json │ │ ├── google_healthcare_dataset_iam_binding.json │ │ ├── google_healthcare_dataset_iam_member.json │ │ ├── google_healthcare_dataset_iam_policy.json │ │ ├── google_healthcare_dicom_store_iam_binding.json │ │ ├── google_healthcare_dicom_store_iam_member.json │ │ ├── google_healthcare_dicom_store_iam_policy.json │ │ ├── google_healthcare_fhir_store_iam_binding.json │ │ ├── google_healthcare_fhir_store_iam_member.json │ │ ├── google_healthcare_fhir_store_iam_policy.json │ │ ├── google_healthcare_hl7_v2_store_iam_binding.json │ │ ├── google_healthcare_hl7_v2_store_iam_member.json │ │ └── google_healthcare_hl7_v2_store_iam_policy.json │ │ ├── iam.googleapis.com │ │ ├── google_iam_workforce_pool.json │ │ ├── google_iam_workforce_pool_iam_binding.json │ │ ├── google_iam_workforce_pool_iam_member.json │ │ ├── google_iam_workforce_pool_iam_policy.json │ │ ├── google_iam_workforce_pool_provider.json │ │ ├── google_iam_workforce_pool_provider_key.json │ │ ├── google_iam_workload_identity_pool_iam_binding.json │ │ ├── google_iam_workload_identity_pool_iam_member.json │ │ └── google_iam_workload_identity_pool_iam_policy.json │ │ ├── iam │ │ ├── google_default_service_accounts.json │ │ ├── google_dns_managed_zone_iam_binding.json │ │ ├── google_dns_managed_zone_iam_member.json │ │ ├── google_dns_managed_zone_iam_policy.json │ │ ├── google_iam_workload_identity_pool.json │ │ ├── google_iam_workload_identity_pool_provider.json │ │ ├── google_project_default_service_accounts.json │ │ ├── google_project_iam_audit_config.json │ │ ├── google_project_iam_custom_role.json │ │ ├── google_project_iam_policy.json │ │ ├── google_service_account.json │ │ ├── google_service_account_iam_binding.json │ │ ├── google_service_account_iam_member.json │ │ ├── google_service_account_iam_policy.json │ │ └── google_service_account_key.json │ │ ├── iap │ │ ├── google_iap_app_engine_service_iam_binding.json │ │ ├── google_iap_app_engine_service_iam_member.json │ │ ├── google_iap_app_engine_service_iam_policy.json │ │ ├── google_iap_app_engine_version_iam_binding.json │ │ ├── google_iap_app_engine_version_iam_member.json │ │ ├── google_iap_app_engine_version_iam_policy.json │ │ ├── google_iap_settings.json │ │ ├── google_iap_tunnel_dest_group.json │ │ ├── google_iap_tunnel_dest_group_iam_binding.json │ │ ├── google_iap_tunnel_dest_group_iam_member.json │ │ ├── google_iap_tunnel_dest_group_iam_policy.json │ │ ├── google_iap_tunnel_iam_binding.json │ │ ├── google_iap_tunnel_iam_member.json │ │ ├── google_iap_tunnel_iam_policy.json │ │ ├── google_iap_tunnel_instance_iam_binding.json │ │ ├── google_iap_tunnel_instance_iam_member.json │ │ ├── google_iap_tunnel_instance_iam_policy.json │ │ ├── google_iap_web_backend_service_iam_binding.json │ │ ├── google_iap_web_backend_service_iam_member.json │ │ ├── google_iap_web_backend_service_iam_policy.json │ │ ├── google_iap_web_cloud_run_service_iam_binding.json │ │ ├── google_iap_web_cloud_run_service_iam_member.json │ │ ├── google_iap_web_cloud_run_service_iam_policy.json │ │ ├── google_iap_web_forwarding_rule_service_iam_binding.json │ │ ├── google_iap_web_forwarding_rule_service_iam_member.json │ │ ├── google_iap_web_forwarding_rule_service_iam_policy.json │ │ ├── google_iap_web_iam_binding.json │ │ ├── google_iap_web_iam_member.json │ │ ├── google_iap_web_iam_policy.json │ │ ├── google_iap_web_region_backend_service_iam_binding.json │ │ ├── google_iap_web_region_backend_service_iam_member.json │ │ ├── google_iap_web_region_backend_service_iam_policy.json │ │ ├── google_iap_web_region_forwarding_rule_service_iam_binding.json │ │ ├── google_iap_web_region_forwarding_rule_service_iam_member.json │ │ ├── google_iap_web_region_forwarding_rule_service_iam_policy.json │ │ ├── google_iap_web_type_app_engine_iam_binding.json │ │ ├── google_iap_web_type_app_engine_iam_member.json │ │ ├── google_iap_web_type_app_engine_iam_policy.json │ │ ├── google_iap_web_type_compute_iam_binding.json │ │ ├── google_iap_web_type_compute_iam_member.json │ │ └── google_iap_web_type_compute_iam_policy.json │ │ ├── kms │ │ ├── google_kms_ekm_connection_iam_binding.json │ │ ├── google_kms_ekm_connection_iam_member.json │ │ └── google_kms_ekm_connection_iam_policy.json │ │ ├── logging │ │ ├── google_logging_billing_account_exclusion.json │ │ ├── google_logging_billing_account_sink.json │ │ ├── google_logging_folder_exclusion.json │ │ ├── google_logging_folder_settings.json │ │ ├── google_logging_folder_sink.json │ │ ├── google_logging_linked_dataset.json │ │ ├── google_logging_log_scope.json │ │ ├── google_logging_log_view.json │ │ ├── google_logging_log_view_iam_binding.json │ │ ├── google_logging_log_view_iam_member.json │ │ ├── google_logging_log_view_iam_policy.json │ │ ├── google_logging_metric.json │ │ ├── google_logging_organization_exclusion.json │ │ ├── google_logging_organization_settings.json │ │ ├── google_logging_organization_sink.json │ │ ├── google_logging_project_exclusion.json │ │ └── google_logging_project_sink.json │ │ ├── managedkafka │ │ ├── google_managed_kafka_acl.json │ │ ├── google_managed_kafka_cluster.json │ │ ├── google_managed_kafka_connect_cluster.json │ │ ├── google_managed_kafka_connector.json │ │ └── google_managed_kafka_topic.json │ │ ├── memcache │ │ └── google_memcache_instance.json │ │ ├── memorystore │ │ └── google_memorystore_instance.json │ │ ├── metastore │ │ ├── google_dataproc_metastore_database_iam_binding.json │ │ ├── google_dataproc_metastore_database_iam_member.json │ │ ├── google_dataproc_metastore_database_iam_policy.json │ │ ├── google_dataproc_metastore_federation_iam_binding.json │ │ ├── google_dataproc_metastore_federation_iam_member.json │ │ ├── google_dataproc_metastore_federation_iam_policy.json │ │ ├── google_dataproc_metastore_service_iam_binding.json │ │ ├── google_dataproc_metastore_service_iam_member.json │ │ ├── google_dataproc_metastore_service_iam_policy.json │ │ ├── google_dataproc_metastore_table_iam_binding.json │ │ ├── google_dataproc_metastore_table_iam_member.json │ │ └── google_dataproc_metastore_table_iam_policy.json │ │ ├── modelarmor │ │ ├── google_model_armor_floorsetting.json │ │ └── google_model_armor_template.json │ │ ├── monitoring │ │ ├── google_monitoring_alert_policy.json │ │ ├── google_monitoring_custom_service.json │ │ ├── google_monitoring_dashboard.json │ │ ├── google_monitoring_group.json │ │ ├── google_monitoring_metric_descriptor.json │ │ ├── google_monitoring_monitored_project.json │ │ ├── google_monitoring_notification_channel.json │ │ ├── google_monitoring_service.json │ │ ├── google_monitoring_slo.json │ │ └── google_monitoring_uptime_check_config.json │ │ ├── networksecurity │ │ ├── google_network_security_address_group_iam_binding.json │ │ ├── google_network_security_address_group_iam_member.json │ │ └── google_network_security_address_group_iam_policy.json │ │ ├── notebooks │ │ ├── google_notebooks_environment.json │ │ ├── google_notebooks_instance.json │ │ ├── google_notebooks_instance_iam_binding.json │ │ ├── google_notebooks_instance_iam_member.json │ │ ├── google_notebooks_instance_iam_policy.json │ │ ├── google_notebooks_runtime.json │ │ ├── google_notebooks_runtime_iam_binding.json │ │ ├── google_notebooks_runtime_iam_member.json │ │ ├── google_notebooks_runtime_iam_policy.json │ │ ├── google_workbench_instance.json │ │ ├── google_workbench_instance_iam_binding.json │ │ ├── google_workbench_instance_iam_member.json │ │ └── google_workbench_instance_iam_policy.json │ │ ├── orgpolicy │ │ └── google_project_organization_policy.json │ │ ├── osconfig │ │ ├── google_os_config_guest_policies.json │ │ ├── google_os_config_os_policy_assignment.json │ │ ├── google_os_config_patch_deployment.json │ │ ├── google_os_config_v2_policy_orchestrator.json │ │ ├── google_os_config_v2_policy_orchestrator_for_folder.json │ │ └── google_os_config_v2_policy_orchestrator_for_organization.json │ │ ├── parallelstore │ │ └── google_parallelstore_instance.json │ │ ├── privateca │ │ ├── google_privateca_ca_pool.json │ │ ├── google_privateca_ca_pool_iam_binding.json │ │ ├── google_privateca_ca_pool_iam_member.json │ │ ├── google_privateca_ca_pool_iam_policy.json │ │ ├── google_privateca_certificate.json │ │ ├── google_privateca_certificate_authority.json │ │ ├── google_privateca_certificate_template.json │ │ ├── google_privateca_certificate_template_iam_binding.json │ │ ├── google_privateca_certificate_template_iam_member.json │ │ └── google_privateca_certificate_template_iam_policy.json │ │ ├── privilegedaccessmanager │ │ └── google_privileged_access_manager_entitlement.json │ │ ├── pubsub │ │ ├── google_pubsub_schema.json │ │ ├── google_pubsub_schema_iam_binding.json │ │ ├── google_pubsub_schema_iam_member.json │ │ ├── google_pubsub_schema_iam_policy.json │ │ ├── google_pubsub_subscription.json │ │ ├── google_pubsub_subscription_iam_binding.json │ │ ├── google_pubsub_subscription_iam_member.json │ │ ├── google_pubsub_subscription_iam_policy.json │ │ ├── google_pubsub_topic.json │ │ ├── google_pubsub_topic_iam_binding.json │ │ └── google_pubsub_topic_iam_policy.json │ │ ├── pubsublite │ │ ├── google_pubsub_lite_reservation.json │ │ ├── google_pubsub_lite_subscription.json │ │ └── google_pubsub_lite_topic.json │ │ ├── redis │ │ ├── google_redis_cluster.json │ │ ├── google_redis_cluster_user_created_connections.json │ │ └── google_redis_instance.json │ │ ├── resourcemanager │ │ ├── google_billing_project_info.json │ │ ├── google_folder_iam_binding.json │ │ ├── google_folder_iam_member.json │ │ ├── google_folder_iam_policy.json │ │ ├── google_organization_iam_binding.json │ │ ├── google_organization_iam_member.json │ │ ├── google_organization_iam_policy.json │ │ ├── google_project.json │ │ ├── google_project_iam_binding.json │ │ ├── google_project_iam_member_remove.json │ │ ├── google_project_iam_policy.json │ │ ├── google_project_service.json │ │ ├── google_tags_location_tag_binding.json │ │ ├── google_tags_tag_binding.json │ │ ├── google_tags_tag_key.json │ │ ├── google_tags_tag_key_iam_binding.json │ │ ├── google_tags_tag_key_iam_member.json │ │ ├── google_tags_tag_key_iam_policy.json │ │ ├── google_tags_tag_value.json │ │ ├── google_tags_tag_value_iam_binding.json │ │ ├── google_tags_tag_value_iam_member.json │ │ └── google_tags_tag_value_iam_policy.json │ │ ├── run │ │ ├── google_cloud_run_domain_mapping.json │ │ ├── google_cloud_run_service.json │ │ ├── google_cloud_run_service_iam_binding.json │ │ ├── google_cloud_run_service_iam_member.json │ │ ├── google_cloud_run_service_iam_policy.json │ │ ├── google_cloud_run_v2_job.json │ │ ├── google_cloud_run_v2_job_iam.json │ │ ├── google_cloud_run_v2_service.json │ │ ├── google_cloud_run_v2_service_iam.json │ │ ├── google_cloud_run_v2_worker_pool.json │ │ ├── google_cloud_run_v2_worker_pool_iam_binding.json │ │ ├── google_cloud_run_v2_worker_pool_iam_member.json │ │ └── google_cloud_run_v2_worker_pool_iam_policy.json │ │ ├── runtimeconfig │ │ ├── google_runtimeconfig_config.json │ │ ├── google_runtimeconfig_config_iam_binding.json │ │ ├── google_runtimeconfig_config_iam_member.json │ │ ├── google_runtimeconfig_config_iam_policy.json │ │ └── google_runtimeconfig_variable.json │ │ ├── secretmanager │ │ ├── google_secret_manager_regional_secret.json │ │ ├── google_secret_manager_regional_secret_iam_binding.json │ │ ├── google_secret_manager_regional_secret_iam_member.json │ │ ├── google_secret_manager_regional_secret_iam_policy.json │ │ ├── google_secret_manager_regional_secret_version.json │ │ ├── google_secret_manager_secret.json │ │ ├── google_secret_manager_secret_iam_binding.json │ │ └── google_secret_manager_secret_version.json │ │ ├── securesourcemanager │ │ ├── google_secure_source_manager_branch_rule.json │ │ ├── google_secure_source_manager_instance.json │ │ ├── google_secure_source_manager_instance_iam_binding.json │ │ ├── google_secure_source_manager_instance_iam_member.json │ │ ├── google_secure_source_manager_instance_iam_policy.json │ │ ├── google_secure_source_manager_repository.json │ │ ├── google_secure_source_manager_repository_iam_binding.json │ │ ├── google_secure_source_manager_repository_iam_member.json │ │ └── google_secure_source_manager_repository_iam_policy.json │ │ ├── securitycenter │ │ ├── google_scc_source_iam_binding.json │ │ ├── google_scc_source_iam_member.json │ │ ├── google_scc_source_iam_policy.json │ │ ├── google_scc_v2_organization_source_iam_binding.json │ │ ├── google_scc_v2_organization_source_iam_member.json │ │ └── google_scc_v2_organization_source_iam_policy.json │ │ ├── servicedirectory │ │ ├── google_service_directory_endpoint.json │ │ ├── google_service_directory_namespace.json │ │ ├── google_service_directory_namespace_iam_binding.json │ │ ├── google_service_directory_namespace_iam_member.json │ │ ├── google_service_directory_namespace_iam_policy.json │ │ ├── google_service_directory_service.json │ │ ├── google_service_directory_service_iam_binding.json │ │ ├── google_service_directory_service_iam_member.json │ │ └── google_service_directory_service_iam_policy.json │ │ ├── servicemanagement │ │ ├── google_endpoints_service_consumers_iam_binding.json │ │ ├── google_endpoints_service_consumers_iam_member.json │ │ ├── google_endpoints_service_consumers_iam_policy.json │ │ ├── google_endpoints_service_iam_binding.json │ │ ├── google_endpoints_service_iam_member.json │ │ └── google_endpoints_service_iam_policy.json │ │ ├── servicenetworking │ │ └── google_service_networking_connection.json │ │ ├── source │ │ ├── google_soucerepo_repository.json │ │ ├── google_sourcerepo_repository_iam_binding.json │ │ ├── google_sourcerepo_repository_iam_member.json │ │ └── google_sourcerepo_repository_iam_policy.json │ │ ├── spanner │ │ ├── google_spanner_backup_schedule.json │ │ ├── google_spanner_database.json │ │ ├── google_spanner_database_iam.json │ │ ├── google_spanner_instance.json │ │ ├── google_spanner_instance_config.json │ │ ├── google_spanner_instance_iam.json │ │ └── google_spanner_instance_partition.json │ │ ├── storage │ │ ├── google_storage_bucket.json │ │ ├── google_storage_bucket_access_control.json │ │ ├── google_storage_bucket_acl.json │ │ ├── google_storage_bucket_iam_binding.json │ │ ├── google_storage_bucket_iam_member.json │ │ ├── google_storage_bucket_iam_policy.json │ │ ├── google_storage_bucket_object.json │ │ ├── google_storage_control_folder_intelligence_config.json │ │ ├── google_storage_control_organization_intelligence_config.json │ │ ├── google_storage_control_project_intelligence_config.json │ │ ├── google_storage_default_object_access_control.json │ │ ├── google_storage_default_object_acl.json │ │ ├── google_storage_hmac_key.json │ │ ├── google_storage_insights_report_config.json │ │ ├── google_storage_managed_folder_iam_binding.json │ │ ├── google_storage_managed_folder_iam_member.json │ │ ├── google_storage_managed_folder_iam_policy.json │ │ └── google_storage_object_access_control.json │ │ ├── storageinsights │ │ └── google_storage_insights_dataset_config.json │ │ ├── template.json │ │ ├── tpu │ │ ├── google_tpu_node.json │ │ ├── google_tpu_v2_queued_resource.json │ │ └── google_tpu_v2_vm.json │ │ ├── transcoder │ │ ├── google_transcoder_job.json │ │ └── google_transcoder_job_template.json │ │ ├── vmwareengine │ │ ├── google_vmwareengine_cluster.json │ │ ├── google_vmwareengine_external_access_rule.json │ │ ├── google_vmwareengine_external_address.json │ │ ├── google_vmwareengine_network.json │ │ ├── google_vmwareengine_network_peering.json │ │ ├── google_vmwareengine_network_policy.json │ │ ├── google_vmwareengine_private_cloud.json │ │ └── google_vmwareengine_subnet.json │ │ ├── vpcaccess │ │ └── google_vpc_access_connector.json │ │ ├── workflows │ │ └── google_workflows_workflow.json │ │ └── workstations │ │ ├── google_workstations_workstation.json │ │ ├── google_workstations_workstation_cluster.json │ │ ├── google_workstations_workstation_config.json │ │ ├── google_workstations_workstation_config_iam_binding.json │ │ ├── google_workstations_workstation_config_iam_member.json │ │ ├── google_workstations_workstation_config_iam_policy.json │ │ ├── google_workstations_workstation_iam_binding.json │ │ ├── google_workstations_workstation_iam_member.json │ │ └── google_workstations_workstation_iam_policy.json ├── modules.go ├── modules_test.go ├── parse │ ├── aws-members.json │ ├── azurerm-members.json │ ├── google-members.json │ ├── parse.go │ ├── parse_test.go │ └── testdata │ │ └── test.go ├── policy.go ├── policy_test.go ├── readme.go ├── readme_test.go ├── repository.go ├── repository_internal_test.go ├── repository_test.go ├── scan.go ├── scan_test.go ├── schema │ ├── README.md │ ├── alexa-ask-skill.json │ ├── aws-accessanalyzer-analyzer.json │ ├── aws-acmpca-certificate.json │ ├── aws-acmpca-certificateauthority.json │ ├── aws-acmpca-certificateauthorityactivation.json │ ├── aws-acmpca-permission.json │ ├── aws-amazonmq-broker.json │ ├── aws-amazonmq-configuration.json │ ├── aws-amazonmq-configurationassociation.json │ ├── aws-amplify-app.json │ ├── aws-amplify-branch.json │ ├── aws-amplify-domain.json │ ├── aws-amplifyuibuilder-component.json │ ├── aws-amplifyuibuilder-form.json │ ├── aws-amplifyuibuilder-theme.json │ ├── aws-apigateway-account.json │ ├── aws-apigateway-apikey.json │ ├── aws-apigateway-authorizer.json │ ├── aws-apigateway-basepathmapping.json │ ├── aws-apigateway-basepathmappingv2.json │ ├── aws-apigateway-clientcertificate.json │ ├── aws-apigateway-deployment.json │ ├── aws-apigateway-documentationpart.json │ ├── aws-apigateway-documentationversion.json │ ├── aws-apigateway-domainname.json │ ├── aws-apigateway-domainnameaccessassociation.json │ ├── aws-apigateway-domainnamev2.json │ ├── aws-apigateway-gatewayresponse.json │ ├── aws-apigateway-method.json │ ├── aws-apigateway-model.json │ ├── aws-apigateway-requestvalidator.json │ ├── aws-apigateway-resource.json │ ├── aws-apigateway-restapi.json │ ├── aws-apigateway-stage.json │ ├── aws-apigateway-usageplan.json │ ├── aws-apigateway-usageplankey.json │ ├── aws-apigateway-vpclink.json │ ├── aws-apigatewayv2-api.json │ ├── aws-apigatewayv2-apigatewaymanagedoverrides.json │ ├── aws-apigatewayv2-apimapping.json │ ├── aws-apigatewayv2-authorizer.json │ ├── aws-apigatewayv2-deployment.json │ ├── aws-apigatewayv2-domainname.json │ ├── aws-apigatewayv2-integration.json │ ├── aws-apigatewayv2-integrationresponse.json │ ├── aws-apigatewayv2-model.json │ ├── aws-apigatewayv2-route.json │ ├── aws-apigatewayv2-routeresponse.json │ ├── aws-apigatewayv2-stage.json │ ├── aws-apigatewayv2-vpclink.json │ ├── aws-appconfig-application.json │ ├── aws-appconfig-configurationprofile.json │ ├── aws-appconfig-deployment.json │ ├── aws-appconfig-deploymentstrategy.json │ ├── aws-appconfig-environment.json │ ├── aws-appconfig-extension.json │ ├── aws-appconfig-extensionassociation.json │ ├── aws-appconfig-hostedconfigurationversion.json │ ├── aws-appflow-connector.json │ ├── aws-appflow-connectorprofile.json │ ├── aws-appflow-flow.json │ ├── aws-appintegrations-application.json │ ├── aws-appintegrations-dataintegration.json │ ├── aws-appintegrations-eventintegration.json │ ├── aws-applicationautoscaling-scalabletarget.json │ ├── aws-applicationautoscaling-scalingpolicy.json │ ├── aws-applicationinsights-application.json │ ├── aws-applicationsignals-discovery.json │ ├── aws-applicationsignals-servicelevelobjective.json │ ├── aws-appmesh-gatewayroute.json │ ├── aws-appmesh-mesh.json │ ├── aws-appmesh-route.json │ ├── aws-appmesh-virtualgateway.json │ ├── aws-appmesh-virtualnode.json │ ├── aws-appmesh-virtualrouter.json │ ├── aws-appmesh-virtualservice.json │ ├── aws-apprunner-autoscalingconfiguration.json │ ├── aws-apprunner-observabilityconfiguration.json │ ├── aws-apprunner-service.json │ ├── aws-apprunner-vpcconnector.json │ ├── aws-apprunner-vpcingressconnection.json │ ├── aws-appstream-appblock.json │ ├── aws-appstream-appblockbuilder.json │ ├── aws-appstream-application.json │ ├── aws-appstream-applicationentitlementassociation.json │ ├── aws-appstream-applicationfleetassociation.json │ ├── aws-appstream-directoryconfig.json │ ├── aws-appstream-entitlement.json │ ├── aws-appstream-fleet.json │ ├── aws-appstream-imagebuilder.json │ ├── aws-appstream-stack.json │ ├── aws-appstream-stackfleetassociation.json │ ├── aws-appstream-stackuserassociation.json │ ├── aws-appstream-user.json │ ├── aws-appsync-api.json │ ├── aws-appsync-apicache.json │ ├── aws-appsync-apikey.json │ ├── aws-appsync-channelnamespace.json │ ├── aws-appsync-datasource.json │ ├── aws-appsync-domainname.json │ ├── aws-appsync-domainnameapiassociation.json │ ├── aws-appsync-functionconfiguration.json │ ├── aws-appsync-graphqlapi.json │ ├── aws-appsync-graphqlschema.json │ ├── aws-appsync-resolver.json │ ├── aws-appsync-sourceapiassociation.json │ ├── aws-apptest-testcase.json │ ├── aws-aps-rulegroupsnamespace.json │ ├── aws-aps-scraper.json │ ├── aws-aps-workspace.json │ ├── aws-arczonalshift-autoshiftobservernotificationstatus.json │ ├── aws-arczonalshift-zonalautoshiftconfiguration.json │ ├── aws-athena-capacityreservation.json │ ├── aws-athena-datacatalog.json │ ├── aws-athena-namedquery.json │ ├── aws-athena-preparedstatement.json │ ├── aws-athena-workgroup.json │ ├── aws-auditmanager-assessment.json │ ├── aws-autoscaling-autoscalinggroup.json │ ├── aws-autoscaling-launchconfiguration.json │ ├── aws-autoscaling-lifecyclehook.json │ ├── aws-autoscaling-scalingpolicy.json │ ├── aws-autoscaling-scheduledaction.json │ ├── aws-autoscaling-warmpool.json │ ├── aws-autoscalingplans-scalingplan.json │ ├── aws-b2bi-capability.json │ ├── aws-b2bi-partnership.json │ ├── aws-b2bi-profile.json │ ├── aws-b2bi-transformer.json │ ├── aws-backup-backupplan.json │ ├── aws-backup-backupselection.json │ ├── aws-backup-backupvault.json │ ├── aws-backup-framework.json │ ├── aws-backup-logicallyairgappedbackupvault.json │ ├── aws-backup-reportplan.json │ ├── aws-backup-restoretestingplan.json │ ├── aws-backup-restoretestingselection.json │ ├── aws-backupgateway-hypervisor.json │ ├── aws-batch-computeenvironment.json │ ├── aws-batch-consumableresource.json │ ├── aws-batch-jobdefinition.json │ ├── aws-batch-jobqueue.json │ ├── aws-batch-schedulingpolicy.json │ ├── aws-bcmdataexports-export.json │ ├── aws-bedrock-agent.json │ ├── aws-bedrock-agentalias.json │ ├── aws-bedrock-applicationinferenceprofile.json │ ├── aws-bedrock-blueprint.json │ ├── aws-bedrock-dataautomationproject.json │ ├── aws-bedrock-datasource.json │ ├── aws-bedrock-flow.json │ ├── aws-bedrock-flowalias.json │ ├── aws-bedrock-flowversion.json │ ├── aws-bedrock-guardrail.json │ ├── aws-bedrock-guardrailversion.json │ ├── aws-bedrock-knowledgebase.json │ ├── aws-bedrock-prompt.json │ ├── aws-bedrock-promptversion.json │ ├── aws-billingconductor-billinggroup.json │ ├── aws-billingconductor-customlineitem.json │ ├── aws-billingconductor-pricingplan.json │ ├── aws-billingconductor-pricingrule.json │ ├── aws-budgets-budget.json │ ├── aws-budgets-budgetsaction.json │ ├── aws-cassandra-keyspace.json │ ├── aws-cassandra-table.json │ ├── aws-cassandra-type.json │ ├── aws-ce-anomalymonitor.json │ ├── aws-ce-anomalysubscription.json │ ├── aws-ce-costcategory.json │ ├── aws-certificatemanager-account.json │ ├── aws-certificatemanager-certificate.json │ ├── aws-chatbot-customaction.json │ ├── aws-chatbot-microsoftteamschannelconfiguration.json │ ├── aws-chatbot-slackchannelconfiguration.json │ ├── aws-cleanrooms-analysistemplate.json │ ├── aws-cleanrooms-collaboration.json │ ├── aws-cleanrooms-configuredtable.json │ ├── aws-cleanrooms-configuredtableassociation.json │ ├── aws-cleanrooms-idmappingtable.json │ ├── aws-cleanrooms-idnamespaceassociation.json │ ├── aws-cleanrooms-membership.json │ ├── aws-cleanrooms-privacybudgettemplate.json │ ├── aws-cleanroomsml-trainingdataset.json │ ├── aws-cloud9-environmentec2.json │ ├── aws-cloudformation-customresource.json │ ├── aws-cloudformation-guardhook.json │ ├── aws-cloudformation-hookdefaultversion.json │ ├── aws-cloudformation-hooktypeconfig.json │ ├── aws-cloudformation-hookversion.json │ ├── aws-cloudformation-lambdahook.json │ ├── aws-cloudformation-macro.json │ ├── aws-cloudformation-moduledefaultversion.json │ ├── aws-cloudformation-moduleversion.json │ ├── aws-cloudformation-publictypeversion.json │ ├── aws-cloudformation-publisher.json │ ├── aws-cloudformation-resourcedefaultversion.json │ ├── aws-cloudformation-resourceversion.json │ ├── aws-cloudformation-stack.json │ ├── aws-cloudformation-stackset.json │ ├── aws-cloudformation-typeactivation.json │ ├── aws-cloudformation-waitcondition.json │ ├── aws-cloudformation-waitconditionhandle.json │ ├── aws-cloudfront-anycastiplist.json │ ├── aws-cloudfront-cachepolicy.json │ ├── aws-cloudfront-cloudfrontoriginaccessidentity.json │ ├── aws-cloudfront-connectiongroup.json │ ├── aws-cloudfront-continuousdeploymentpolicy.json │ ├── aws-cloudfront-distribution.json │ ├── aws-cloudfront-distributiontenant.json │ ├── aws-cloudfront-function.json │ ├── aws-cloudfront-keygroup.json │ ├── aws-cloudfront-keyvaluestore.json │ ├── aws-cloudfront-monitoringsubscription.json │ ├── aws-cloudfront-originaccesscontrol.json │ ├── aws-cloudfront-originrequestpolicy.json │ ├── aws-cloudfront-publickey.json │ ├── aws-cloudfront-realtimelogconfig.json │ ├── aws-cloudfront-responseheaderspolicy.json │ ├── aws-cloudfront-streamingdistribution.json │ ├── aws-cloudfront-vpcorigin.json │ ├── aws-cloudtrail-channel.json │ ├── aws-cloudtrail-dashboard.json │ ├── aws-cloudtrail-eventdatastore.json │ ├── aws-cloudtrail-resourcepolicy.json │ ├── aws-cloudtrail-trail.json │ ├── aws-cloudwatch-alarm.json │ ├── aws-cloudwatch-anomalydetector.json │ ├── aws-cloudwatch-compositealarm.json │ ├── aws-cloudwatch-dashboard.json │ ├── aws-cloudwatch-insightrule.json │ ├── aws-cloudwatch-metricstream.json │ ├── aws-codeartifact-domain.json │ ├── aws-codeartifact-packagegroup.json │ ├── aws-codeartifact-repository.json │ ├── aws-codebuild-fleet.json │ ├── aws-codebuild-project.json │ ├── aws-codebuild-reportgroup.json │ ├── aws-codebuild-sourcecredential.json │ ├── aws-codecommit-repository.json │ ├── aws-codeconnections-connection.json │ ├── aws-codedeploy-application.json │ ├── aws-codedeploy-deploymentconfig.json │ ├── aws-codedeploy-deploymentgroup.json │ ├── aws-codeguruprofiler-profilinggroup.json │ ├── aws-codegurureviewer-repositoryassociation.json │ ├── aws-codepipeline-customactiontype.json │ ├── aws-codepipeline-pipeline.json │ ├── aws-codepipeline-webhook.json │ ├── aws-codestar-githubrepository.json │ ├── aws-codestarconnections-connection.json │ ├── aws-codestarconnections-repositorylink.json │ ├── aws-codestarconnections-syncconfiguration.json │ ├── aws-codestarnotifications-notificationrule.json │ ├── aws-cognito-identitypool.json │ ├── aws-cognito-identitypoolprincipaltag.json │ ├── aws-cognito-identitypoolroleattachment.json │ ├── aws-cognito-logdeliveryconfiguration.json │ ├── aws-cognito-managedloginbranding.json │ ├── aws-cognito-userpool.json │ ├── aws-cognito-userpoolclient.json │ ├── aws-cognito-userpooldomain.json │ ├── aws-cognito-userpoolgroup.json │ ├── aws-cognito-userpoolidentityprovider.json │ ├── aws-cognito-userpoolresourceserver.json │ ├── aws-cognito-userpoolriskconfigurationattachment.json │ ├── aws-cognito-userpooluicustomizationattachment.json │ ├── aws-cognito-userpooluser.json │ ├── aws-cognito-userpoolusertogroupattachment.json │ ├── aws-comprehend-documentclassifier.json │ ├── aws-comprehend-flywheel.json │ ├── aws-config-aggregationauthorization.json │ ├── aws-config-configrule.json │ ├── aws-config-configurationaggregator.json │ ├── aws-config-configurationrecorder.json │ ├── aws-config-conformancepack.json │ ├── aws-config-deliverychannel.json │ ├── aws-config-organizationconfigrule.json │ ├── aws-config-organizationconformancepack.json │ ├── aws-config-remediationconfiguration.json │ ├── aws-config-storedquery.json │ ├── aws-connect-agentstatus.json │ ├── aws-connect-approvedorigin.json │ ├── aws-connect-contactflow.json │ ├── aws-connect-contactflowmodule.json │ ├── aws-connect-contactflowversion.json │ ├── aws-connect-emailaddress.json │ ├── aws-connect-evaluationform.json │ ├── aws-connect-hoursofoperation.json │ ├── aws-connect-instance.json │ ├── aws-connect-instancestorageconfig.json │ ├── aws-connect-integrationassociation.json │ ├── aws-connect-phonenumber.json │ ├── aws-connect-predefinedattribute.json │ ├── aws-connect-prompt.json │ ├── aws-connect-queue.json │ ├── aws-connect-quickconnect.json │ ├── aws-connect-routingprofile.json │ ├── aws-connect-rule.json │ ├── aws-connect-securitykey.json │ ├── aws-connect-securityprofile.json │ ├── aws-connect-tasktemplate.json │ ├── aws-connect-trafficdistributiongroup.json │ ├── aws-connect-user.json │ ├── aws-connect-userhierarchygroup.json │ ├── aws-connect-userhierarchystructure.json │ ├── aws-connect-view.json │ ├── aws-connect-viewversion.json │ ├── aws-connectcampaigns-campaign.json │ ├── aws-connectcampaignsv2-campaign.json │ ├── aws-controltower-enabledbaseline.json │ ├── aws-controltower-enabledcontrol.json │ ├── aws-controltower-landingzone.json │ ├── aws-cur-reportdefinition.json │ ├── aws-customerprofiles-calculatedattributedefinition.json │ ├── aws-customerprofiles-domain.json │ ├── aws-customerprofiles-eventstream.json │ ├── aws-customerprofiles-eventtrigger.json │ ├── aws-customerprofiles-integration.json │ ├── aws-customerprofiles-objecttype.json │ ├── aws-customerprofiles-segmentdefinition.json │ ├── aws-databrew-dataset.json │ ├── aws-databrew-job.json │ ├── aws-databrew-project.json │ ├── aws-databrew-recipe.json │ ├── aws-databrew-ruleset.json │ ├── aws-databrew-schedule.json │ ├── aws-datapipeline-pipeline.json │ ├── aws-datasync-agent.json │ ├── aws-datasync-locationazureblob.json │ ├── aws-datasync-locationefs.json │ ├── aws-datasync-locationfsxlustre.json │ ├── aws-datasync-locationfsxontap.json │ ├── aws-datasync-locationfsxopenzfs.json │ ├── aws-datasync-locationfsxwindows.json │ ├── aws-datasync-locationhdfs.json │ ├── aws-datasync-locationnfs.json │ ├── aws-datasync-locationobjectstorage.json │ ├── aws-datasync-locations3.json │ ├── aws-datasync-locationsmb.json │ ├── aws-datasync-storagesystem.json │ ├── aws-datasync-task.json │ ├── aws-datazone-connection.json │ ├── aws-datazone-datasource.json │ ├── aws-datazone-domain.json │ ├── aws-datazone-environment.json │ ├── aws-datazone-environmentactions.json │ ├── aws-datazone-environmentblueprintconfiguration.json │ ├── aws-datazone-environmentprofile.json │ ├── aws-datazone-groupprofile.json │ ├── aws-datazone-project.json │ ├── aws-datazone-projectmembership.json │ ├── aws-datazone-subscriptiontarget.json │ ├── aws-datazone-userprofile.json │ ├── aws-dax-cluster.json │ ├── aws-dax-parametergroup.json │ ├── aws-dax-subnetgroup.json │ ├── aws-deadline-farm.json │ ├── aws-deadline-fleet.json │ ├── aws-deadline-licenseendpoint.json │ ├── aws-deadline-limit.json │ ├── aws-deadline-meteredproduct.json │ ├── aws-deadline-monitor.json │ ├── aws-deadline-queue.json │ ├── aws-deadline-queueenvironment.json │ ├── aws-deadline-queuefleetassociation.json │ ├── aws-deadline-queuelimitassociation.json │ ├── aws-deadline-storageprofile.json │ ├── aws-detective-graph.json │ ├── aws-detective-memberinvitation.json │ ├── aws-detective-organizationadmin.json │ ├── aws-devopsguru-loganomalydetectionintegration.json │ ├── aws-devopsguru-notificationchannel.json │ ├── aws-devopsguru-resourcecollection.json │ ├── aws-directoryservice-microsoftad.json │ ├── aws-directoryservice-simplead.json │ ├── aws-dlm-lifecyclepolicy.json │ ├── aws-dms-certificate.json │ ├── aws-dms-datamigration.json │ ├── aws-dms-dataprovider.json │ ├── aws-dms-endpoint.json │ ├── aws-dms-eventsubscription.json │ ├── aws-dms-instanceprofile.json │ ├── aws-dms-migrationproject.json │ ├── aws-dms-replicationconfig.json │ ├── aws-dms-replicationinstance.json │ ├── aws-dms-replicationsubnetgroup.json │ ├── aws-dms-replicationtask.json │ ├── aws-docdb-dbcluster.json │ ├── aws-docdb-dbclusterparametergroup.json │ ├── aws-docdb-dbinstance.json │ ├── aws-docdb-dbsubnetgroup.json │ ├── aws-docdb-eventsubscription.json │ ├── aws-docdbelastic-cluster.json │ ├── aws-dsql-cluster.json │ ├── aws-dynamodb-globaltable.json │ ├── aws-dynamodb-table.json │ ├── aws-ec2-capacityreservation.json │ ├── aws-ec2-capacityreservationfleet.json │ ├── aws-ec2-carriergateway.json │ ├── aws-ec2-clientvpnauthorizationrule.json │ ├── aws-ec2-clientvpnendpoint.json │ ├── aws-ec2-clientvpnroute.json │ ├── aws-ec2-clientvpntargetnetworkassociation.json │ ├── aws-ec2-customergateway.json │ ├── aws-ec2-dhcpoptions.json │ ├── aws-ec2-ec2fleet.json │ ├── aws-ec2-egressonlyinternetgateway.json │ ├── aws-ec2-eip.json │ ├── aws-ec2-eipassociation.json │ ├── aws-ec2-enclavecertificateiamroleassociation.json │ ├── aws-ec2-flowlog.json │ ├── aws-ec2-gatewayroutetableassociation.json │ ├── aws-ec2-host.json │ ├── aws-ec2-instance.json │ ├── aws-ec2-instanceconnectendpoint.json │ ├── aws-ec2-internetgateway.json │ ├── aws-ec2-ipam.json │ ├── aws-ec2-ipamallocation.json │ ├── aws-ec2-ipampool.json │ ├── aws-ec2-ipampoolcidr.json │ ├── aws-ec2-ipamresourcediscovery.json │ ├── aws-ec2-ipamresourcediscoveryassociation.json │ ├── aws-ec2-ipamscope.json │ ├── aws-ec2-keypair.json │ ├── aws-ec2-launchtemplate.json │ ├── aws-ec2-localgatewayroute.json │ ├── aws-ec2-localgatewayroutetable.json │ ├── aws-ec2-localgatewayroutetablevirtualinterfacegroupassociation.json │ ├── aws-ec2-localgatewayroutetablevpcassociation.json │ ├── aws-ec2-natgateway.json │ ├── aws-ec2-networkacl.json │ ├── aws-ec2-networkaclentry.json │ ├── aws-ec2-networkinsightsaccessscope.json │ ├── aws-ec2-networkinsightsaccessscopeanalysis.json │ ├── aws-ec2-networkinsightsanalysis.json │ ├── aws-ec2-networkinsightspath.json │ ├── aws-ec2-networkinterface.json │ ├── aws-ec2-networkinterfaceattachment.json │ ├── aws-ec2-networkinterfacepermission.json │ ├── aws-ec2-networkperformancemetricsubscription.json │ ├── aws-ec2-placementgroup.json │ ├── aws-ec2-prefixlist.json │ ├── aws-ec2-route.json │ ├── aws-ec2-routeserver.json │ ├── aws-ec2-routeserverassociation.json │ ├── aws-ec2-routeserverendpoint.json │ ├── aws-ec2-routeserverpeer.json │ ├── aws-ec2-routeserverpropagation.json │ ├── aws-ec2-routetable.json │ ├── aws-ec2-securitygroup.json │ ├── aws-ec2-securitygroupegress.json │ ├── aws-ec2-securitygroupingress.json │ ├── aws-ec2-securitygroupvpcassociation.json │ ├── aws-ec2-snapshotblockpublicaccess.json │ ├── aws-ec2-spotfleet.json │ ├── aws-ec2-subnet.json │ ├── aws-ec2-subnetcidrblock.json │ ├── aws-ec2-subnetnetworkaclassociation.json │ ├── aws-ec2-subnetroutetableassociation.json │ ├── aws-ec2-trafficmirrorfilter.json │ ├── aws-ec2-trafficmirrorfilterrule.json │ ├── aws-ec2-trafficmirrorsession.json │ ├── aws-ec2-trafficmirrortarget.json │ ├── aws-ec2-transitgateway.json │ ├── aws-ec2-transitgatewayattachment.json │ ├── aws-ec2-transitgatewayconnect.json │ ├── aws-ec2-transitgatewaymulticastdomain.json │ ├── aws-ec2-transitgatewaymulticastdomainassociation.json │ ├── aws-ec2-transitgatewaymulticastgroupmember.json │ ├── aws-ec2-transitgatewaymulticastgroupsource.json │ ├── aws-ec2-transitgatewaypeeringattachment.json │ ├── aws-ec2-transitgatewayroute.json │ ├── aws-ec2-transitgatewayroutetable.json │ ├── aws-ec2-transitgatewayroutetableassociation.json │ ├── aws-ec2-transitgatewayroutetablepropagation.json │ ├── aws-ec2-transitgatewayvpcattachment.json │ ├── aws-ec2-verifiedaccessendpoint.json │ ├── aws-ec2-verifiedaccessgroup.json │ ├── aws-ec2-verifiedaccessinstance.json │ ├── aws-ec2-verifiedaccesstrustprovider.json │ ├── aws-ec2-volume.json │ ├── aws-ec2-volumeattachment.json │ ├── aws-ec2-vpc.json │ ├── aws-ec2-vpcblockpublicaccessexclusion.json │ ├── aws-ec2-vpcblockpublicaccessoptions.json │ ├── aws-ec2-vpccidrblock.json │ ├── aws-ec2-vpcdhcpoptionsassociation.json │ ├── aws-ec2-vpcendpoint.json │ ├── aws-ec2-vpcendpointconnectionnotification.json │ ├── aws-ec2-vpcendpointservice.json │ ├── aws-ec2-vpcendpointservicepermissions.json │ ├── aws-ec2-vpcgatewayattachment.json │ ├── aws-ec2-vpcpeeringconnection.json │ ├── aws-ec2-vpnconnection.json │ ├── aws-ec2-vpnconnectionroute.json │ ├── aws-ec2-vpngateway.json │ ├── aws-ec2-vpngatewayroutepropagation.json │ ├── aws-ecr-publicrepository.json │ ├── aws-ecr-pullthroughcacherule.json │ ├── aws-ecr-registrypolicy.json │ ├── aws-ecr-registryscanningconfiguration.json │ ├── aws-ecr-replicationconfiguration.json │ ├── aws-ecr-repository.json │ ├── aws-ecr-repositorycreationtemplate.json │ ├── aws-ecs-capacityprovider.json │ ├── aws-ecs-cluster.json │ ├── aws-ecs-clustercapacityproviderassociations.json │ ├── aws-ecs-primarytaskset.json │ ├── aws-ecs-service.json │ ├── aws-ecs-taskdefinition.json │ ├── aws-ecs-taskset.json │ ├── aws-efs-accesspoint.json │ ├── aws-efs-filesystem.json │ ├── aws-efs-mounttarget.json │ ├── aws-eks-accessentry.json │ ├── aws-eks-addon.json │ ├── aws-eks-cluster.json │ ├── aws-eks-fargateprofile.json │ ├── aws-eks-identityproviderconfig.json │ ├── aws-eks-nodegroup.json │ ├── aws-eks-podidentityassociation.json │ ├── aws-elasticache-cachecluster.json │ ├── aws-elasticache-globalreplicationgroup.json │ ├── aws-elasticache-parametergroup.json │ ├── aws-elasticache-replicationgroup.json │ ├── aws-elasticache-securitygroup.json │ ├── aws-elasticache-securitygroupingress.json │ ├── aws-elasticache-serverlesscache.json │ ├── aws-elasticache-subnetgroup.json │ ├── aws-elasticache-user.json │ ├── aws-elasticache-usergroup.json │ ├── aws-elasticbeanstalk-application.json │ ├── aws-elasticbeanstalk-applicationversion.json │ ├── aws-elasticbeanstalk-configurationtemplate.json │ ├── aws-elasticbeanstalk-environment.json │ ├── aws-elasticloadbalancing-loadbalancer.json │ ├── aws-elasticloadbalancingv2-listener.json │ ├── aws-elasticloadbalancingv2-listenercertificate.json │ ├── aws-elasticloadbalancingv2-listenerrule.json │ ├── aws-elasticloadbalancingv2-loadbalancer.json │ ├── aws-elasticloadbalancingv2-targetgroup.json │ ├── aws-elasticloadbalancingv2-truststore.json │ ├── aws-elasticloadbalancingv2-truststorerevocation.json │ ├── aws-elasticsearch-domain.json │ ├── aws-emr-cluster.json │ ├── aws-emr-instancefleetconfig.json │ ├── aws-emr-instancegroupconfig.json │ ├── aws-emr-securityconfiguration.json │ ├── aws-emr-step.json │ ├── aws-emr-studio.json │ ├── aws-emr-studiosessionmapping.json │ ├── aws-emr-walworkspace.json │ ├── aws-emrcontainers-virtualcluster.json │ ├── aws-emrserverless-application.json │ ├── aws-entityresolution-idmappingworkflow.json │ ├── aws-entityresolution-idnamespace.json │ ├── aws-entityresolution-matchingworkflow.json │ ├── aws-entityresolution-policystatement.json │ ├── aws-entityresolution-schemamapping.json │ ├── aws-events-apidestination.json │ ├── aws-events-archive.json │ ├── aws-events-connection.json │ ├── aws-events-endpoint.json │ ├── aws-events-eventbus.json │ ├── aws-events-eventbuspolicy.json │ ├── aws-events-rule.json │ ├── aws-eventschemas-discoverer.json │ ├── aws-eventschemas-registry.json │ ├── aws-eventschemas-registrypolicy.json │ ├── aws-eventschemas-schema.json │ ├── aws-evidently-experiment.json │ ├── aws-evidently-feature.json │ ├── aws-evidently-launch.json │ ├── aws-evidently-project.json │ ├── aws-evidently-segment.json │ ├── aws-finspace-environment.json │ ├── aws-fis-experimenttemplate.json │ ├── aws-fis-targetaccountconfiguration.json │ ├── aws-fms-notificationchannel.json │ ├── aws-fms-policy.json │ ├── aws-fms-resourceset.json │ ├── aws-forecast-dataset.json │ ├── aws-forecast-datasetgroup.json │ ├── aws-frauddetector-detector.json │ ├── aws-frauddetector-entitytype.json │ ├── aws-frauddetector-eventtype.json │ ├── aws-frauddetector-label.json │ ├── aws-frauddetector-list.json │ ├── aws-frauddetector-outcome.json │ ├── aws-frauddetector-variable.json │ ├── aws-fsx-datarepositoryassociation.json │ ├── aws-fsx-filesystem.json │ ├── aws-fsx-snapshot.json │ ├── aws-fsx-storagevirtualmachine.json │ ├── aws-fsx-volume.json │ ├── aws-gamelift-alias.json │ ├── aws-gamelift-build.json │ ├── aws-gamelift-containerfleet.json │ ├── aws-gamelift-containergroupdefinition.json │ ├── aws-gamelift-fleet.json │ ├── aws-gamelift-gameservergroup.json │ ├── aws-gamelift-gamesessionqueue.json │ ├── aws-gamelift-location.json │ ├── aws-gamelift-matchmakingconfiguration.json │ ├── aws-gamelift-matchmakingruleset.json │ ├── aws-gamelift-script.json │ ├── aws-globalaccelerator-accelerator.json │ ├── aws-globalaccelerator-crossaccountattachment.json │ ├── aws-globalaccelerator-endpointgroup.json │ ├── aws-globalaccelerator-listener.json │ ├── aws-glue-classifier.json │ ├── aws-glue-connection.json │ ├── aws-glue-crawler.json │ ├── aws-glue-customentitytype.json │ ├── aws-glue-database.json │ ├── aws-glue-datacatalogencryptionsettings.json │ ├── aws-glue-dataqualityruleset.json │ ├── aws-glue-devendpoint.json │ ├── aws-glue-job.json │ ├── aws-glue-mltransform.json │ ├── aws-glue-partition.json │ ├── aws-glue-registry.json │ ├── aws-glue-schema.json │ ├── aws-glue-schemaversion.json │ ├── aws-glue-schemaversionmetadata.json │ ├── aws-glue-securityconfiguration.json │ ├── aws-glue-table.json │ ├── aws-glue-tableoptimizer.json │ ├── aws-glue-trigger.json │ ├── aws-glue-usageprofile.json │ ├── aws-glue-workflow.json │ ├── aws-grafana-workspace.json │ ├── aws-greengrass-connectordefinition.json │ ├── aws-greengrass-connectordefinitionversion.json │ ├── aws-greengrass-coredefinition.json │ ├── aws-greengrass-coredefinitionversion.json │ ├── aws-greengrass-devicedefinition.json │ ├── aws-greengrass-devicedefinitionversion.json │ ├── aws-greengrass-functiondefinition.json │ ├── aws-greengrass-functiondefinitionversion.json │ ├── aws-greengrass-group.json │ ├── aws-greengrass-groupversion.json │ ├── aws-greengrass-loggerdefinition.json │ ├── aws-greengrass-loggerdefinitionversion.json │ ├── aws-greengrass-resourcedefinition.json │ ├── aws-greengrass-resourcedefinitionversion.json │ ├── aws-greengrass-subscriptiondefinition.json │ ├── aws-greengrass-subscriptiondefinitionversion.json │ ├── aws-greengrassv2-componentversion.json │ ├── aws-greengrassv2-deployment.json │ ├── aws-groundstation-config.json │ ├── aws-groundstation-dataflowendpointgroup.json │ ├── aws-groundstation-missionprofile.json │ ├── aws-guardduty-detector.json │ ├── aws-guardduty-filter.json │ ├── aws-guardduty-ipset.json │ ├── aws-guardduty-malwareprotectionplan.json │ ├── aws-guardduty-master.json │ ├── aws-guardduty-member.json │ ├── aws-guardduty-publishingdestination.json │ ├── aws-guardduty-threatintelset.json │ ├── aws-healthimaging-datastore.json │ ├── aws-healthlake-fhirdatastore.json │ ├── aws-iam-accesskey.json │ ├── aws-iam-group.json │ ├── aws-iam-grouppolicy.json │ ├── aws-iam-instanceprofile.json │ ├── aws-iam-managedpolicy.json │ ├── aws-iam-oidcprovider.json │ ├── aws-iam-policy.json │ ├── aws-iam-role.json │ ├── aws-iam-rolepolicy.json │ ├── aws-iam-samlprovider.json │ ├── aws-iam-servercertificate.json │ ├── aws-iam-servicelinkedrole.json │ ├── aws-iam-user.json │ ├── aws-iam-userpolicy.json │ ├── aws-iam-usertogroupaddition.json │ ├── aws-iam-virtualmfadevice.json │ ├── aws-identitystore-group.json │ ├── aws-identitystore-groupmembership.json │ ├── aws-imagebuilder-component.json │ ├── aws-imagebuilder-containerrecipe.json │ ├── aws-imagebuilder-distributionconfiguration.json │ ├── aws-imagebuilder-image.json │ ├── aws-imagebuilder-imagepipeline.json │ ├── aws-imagebuilder-imagerecipe.json │ ├── aws-imagebuilder-infrastructureconfiguration.json │ ├── aws-imagebuilder-lifecyclepolicy.json │ ├── aws-imagebuilder-workflow.json │ ├── aws-inspector-assessmenttarget.json │ ├── aws-inspector-assessmenttemplate.json │ ├── aws-inspector-resourcegroup.json │ ├── aws-inspectorv2-cisscanconfiguration.json │ ├── aws-inspectorv2-filter.json │ ├── aws-internetmonitor-monitor.json │ ├── aws-invoicing-invoiceunit.json │ ├── aws-iot-accountauditconfiguration.json │ ├── aws-iot-authorizer.json │ ├── aws-iot-billinggroup.json │ ├── aws-iot-cacertificate.json │ ├── aws-iot-certificate.json │ ├── aws-iot-certificateprovider.json │ ├── aws-iot-command.json │ ├── aws-iot-custommetric.json │ ├── aws-iot-dimension.json │ ├── aws-iot-domainconfiguration.json │ ├── aws-iot-fleetmetric.json │ ├── aws-iot-jobtemplate.json │ ├── aws-iot-logging.json │ ├── aws-iot-mitigationaction.json │ ├── aws-iot-policy.json │ ├── aws-iot-policyprincipalattachment.json │ ├── aws-iot-provisioningtemplate.json │ ├── aws-iot-resourcespecificlogging.json │ ├── aws-iot-rolealias.json │ ├── aws-iot-scheduledaudit.json │ ├── aws-iot-securityprofile.json │ ├── aws-iot-softwarepackage.json │ ├── aws-iot-softwarepackageversion.json │ ├── aws-iot-thing.json │ ├── aws-iot-thinggroup.json │ ├── aws-iot-thingprincipalattachment.json │ ├── aws-iot-thingtype.json │ ├── aws-iot-topicrule.json │ ├── aws-iot-topicruledestination.json │ ├── aws-iotanalytics-channel.json │ ├── aws-iotanalytics-dataset.json │ ├── aws-iotanalytics-datastore.json │ ├── aws-iotanalytics-pipeline.json │ ├── aws-iotcoredeviceadvisor-suitedefinition.json │ ├── aws-iotevents-alarmmodel.json │ ├── aws-iotevents-detectormodel.json │ ├── aws-iotevents-input.json │ ├── aws-iotfleethub-application.json │ ├── aws-iotfleetwise-campaign.json │ ├── aws-iotfleetwise-decodermanifest.json │ ├── aws-iotfleetwise-fleet.json │ ├── aws-iotfleetwise-modelmanifest.json │ ├── aws-iotfleetwise-signalcatalog.json │ ├── aws-iotfleetwise-statetemplate.json │ ├── aws-iotfleetwise-vehicle.json │ ├── aws-iotsitewise-accesspolicy.json │ ├── aws-iotsitewise-asset.json │ ├── aws-iotsitewise-assetmodel.json │ ├── aws-iotsitewise-dashboard.json │ ├── aws-iotsitewise-dataset.json │ ├── aws-iotsitewise-gateway.json │ ├── aws-iotsitewise-portal.json │ ├── aws-iotsitewise-project.json │ ├── aws-iotthingsgraph-flowtemplate.json │ ├── aws-iottwinmaker-componenttype.json │ ├── aws-iottwinmaker-entity.json │ ├── aws-iottwinmaker-scene.json │ ├── aws-iottwinmaker-syncjob.json │ ├── aws-iottwinmaker-workspace.json │ ├── aws-iotwireless-destination.json │ ├── aws-iotwireless-deviceprofile.json │ ├── aws-iotwireless-fuotatask.json │ ├── aws-iotwireless-multicastgroup.json │ ├── aws-iotwireless-networkanalyzerconfiguration.json │ ├── aws-iotwireless-partneraccount.json │ ├── aws-iotwireless-serviceprofile.json │ ├── aws-iotwireless-taskdefinition.json │ ├── aws-iotwireless-wirelessdevice.json │ ├── aws-iotwireless-wirelessdeviceimporttask.json │ ├── aws-iotwireless-wirelessgateway.json │ ├── aws-ivs-channel.json │ ├── aws-ivs-encoderconfiguration.json │ ├── aws-ivs-ingestconfiguration.json │ ├── aws-ivs-playbackkeypair.json │ ├── aws-ivs-playbackrestrictionpolicy.json │ ├── aws-ivs-publickey.json │ ├── aws-ivs-recordingconfiguration.json │ ├── aws-ivs-stage.json │ ├── aws-ivs-storageconfiguration.json │ ├── aws-ivs-streamkey.json │ ├── aws-ivschat-loggingconfiguration.json │ ├── aws-ivschat-room.json │ ├── aws-kafkaconnect-connector.json │ ├── aws-kafkaconnect-customplugin.json │ ├── aws-kafkaconnect-workerconfiguration.json │ ├── aws-kendra-datasource.json │ ├── aws-kendra-faq.json │ ├── aws-kendra-index.json │ ├── aws-kendraranking-executionplan.json │ ├── aws-kinesis-resourcepolicy.json │ ├── aws-kinesis-stream.json │ ├── aws-kinesis-streamconsumer.json │ ├── aws-kinesisanalytics-application.json │ ├── aws-kinesisanalytics-applicationoutput.json │ ├── aws-kinesisanalytics-applicationreferencedatasource.json │ ├── aws-kinesisanalyticsv2-application.json │ ├── aws-kinesisanalyticsv2-applicationcloudwatchloggingoption.json │ ├── aws-kinesisanalyticsv2-applicationoutput.json │ ├── aws-kinesisanalyticsv2-applicationreferencedatasource.json │ ├── aws-kinesisfirehose-deliverystream.json │ ├── aws-kinesisvideo-signalingchannel.json │ ├── aws-kinesisvideo-stream.json │ ├── aws-kms-alias.json │ ├── aws-kms-key.json │ ├── aws-kms-replicakey.json │ ├── aws-lakeformation-datacellsfilter.json │ ├── aws-lakeformation-datalakesettings.json │ ├── aws-lakeformation-permissions.json │ ├── aws-lakeformation-principalpermissions.json │ ├── aws-lakeformation-resource.json │ ├── aws-lakeformation-tag.json │ ├── aws-lakeformation-tagassociation.json │ ├── aws-lambda-alias.json │ ├── aws-lambda-codesigningconfig.json │ ├── aws-lambda-eventinvokeconfig.json │ ├── aws-lambda-eventsourcemapping.json │ ├── aws-lambda-function.json │ ├── aws-lambda-layerversion.json │ ├── aws-lambda-layerversionpermission.json │ ├── aws-lambda-permission.json │ ├── aws-lambda-url.json │ ├── aws-lambda-version.json │ ├── aws-launchwizard-deployment.json │ ├── aws-lex-bot.json │ ├── aws-lex-botalias.json │ ├── aws-lex-botversion.json │ ├── aws-lex-resourcepolicy.json │ ├── aws-licensemanager-grant.json │ ├── aws-licensemanager-license.json │ ├── aws-lightsail-alarm.json │ ├── aws-lightsail-bucket.json │ ├── aws-lightsail-certificate.json │ ├── aws-lightsail-container.json │ ├── aws-lightsail-database.json │ ├── aws-lightsail-disk.json │ ├── aws-lightsail-distribution.json │ ├── aws-lightsail-instance.json │ ├── aws-lightsail-loadbalancer.json │ ├── aws-lightsail-loadbalancertlscertificate.json │ ├── aws-lightsail-staticip.json │ ├── aws-location-apikey.json │ ├── aws-location-geofencecollection.json │ ├── aws-location-map.json │ ├── aws-location-placeindex.json │ ├── aws-location-routecalculator.json │ ├── aws-location-tracker.json │ ├── aws-location-trackerconsumer.json │ ├── aws-logs-accountpolicy.json │ ├── aws-logs-delivery.json │ ├── aws-logs-deliverydestination.json │ ├── aws-logs-deliverysource.json │ ├── aws-logs-destination.json │ ├── aws-logs-integration.json │ ├── aws-logs-loganomalydetector.json │ ├── aws-logs-loggroup.json │ ├── aws-logs-logstream.json │ ├── aws-logs-metricfilter.json │ ├── aws-logs-querydefinition.json │ ├── aws-logs-resourcepolicy.json │ ├── aws-logs-subscriptionfilter.json │ ├── aws-logs-transformer.json │ ├── aws-lookoutequipment-inferencescheduler.json │ ├── aws-lookoutmetrics-alert.json │ ├── aws-lookoutmetrics-anomalydetector.json │ ├── aws-lookoutvision-project.json │ ├── aws-m2-application.json │ ├── aws-m2-deployment.json │ ├── aws-m2-environment.json │ ├── aws-macie-allowlist.json │ ├── aws-macie-customdataidentifier.json │ ├── aws-macie-findingsfilter.json │ ├── aws-macie-session.json │ ├── aws-managedblockchain-accessor.json │ ├── aws-managedblockchain-member.json │ ├── aws-managedblockchain-node.json │ ├── aws-mediaconnect-bridge.json │ ├── aws-mediaconnect-bridgeoutput.json │ ├── aws-mediaconnect-bridgesource.json │ ├── aws-mediaconnect-flow.json │ ├── aws-mediaconnect-flowentitlement.json │ ├── aws-mediaconnect-flowoutput.json │ ├── aws-mediaconnect-flowsource.json │ ├── aws-mediaconnect-flowvpcinterface.json │ ├── aws-mediaconnect-gateway.json │ ├── aws-mediaconvert-jobtemplate.json │ ├── aws-mediaconvert-preset.json │ ├── aws-mediaconvert-queue.json │ ├── aws-medialive-channel.json │ ├── aws-medialive-channelplacementgroup.json │ ├── aws-medialive-cloudwatchalarmtemplate.json │ ├── aws-medialive-cloudwatchalarmtemplategroup.json │ ├── aws-medialive-cluster.json │ ├── aws-medialive-eventbridgeruletemplate.json │ ├── aws-medialive-eventbridgeruletemplategroup.json │ ├── aws-medialive-input.json │ ├── aws-medialive-inputsecuritygroup.json │ ├── aws-medialive-multiplex.json │ ├── aws-medialive-multiplexprogram.json │ ├── aws-medialive-network.json │ ├── aws-medialive-sdisource.json │ ├── aws-medialive-signalmap.json │ ├── aws-mediapackage-asset.json │ ├── aws-mediapackage-channel.json │ ├── aws-mediapackage-originendpoint.json │ ├── aws-mediapackage-packagingconfiguration.json │ ├── aws-mediapackage-packaginggroup.json │ ├── aws-mediapackagev2-channel.json │ ├── aws-mediapackagev2-channelgroup.json │ ├── aws-mediapackagev2-channelpolicy.json │ ├── aws-mediapackagev2-originendpoint.json │ ├── aws-mediapackagev2-originendpointpolicy.json │ ├── aws-mediastore-container.json │ ├── aws-mediatailor-channel.json │ ├── aws-mediatailor-channelpolicy.json │ ├── aws-mediatailor-livesource.json │ ├── aws-mediatailor-playbackconfiguration.json │ ├── aws-mediatailor-sourcelocation.json │ ├── aws-mediatailor-vodsource.json │ ├── aws-memorydb-acl.json │ ├── aws-memorydb-cluster.json │ ├── aws-memorydb-multiregioncluster.json │ ├── aws-memorydb-parametergroup.json │ ├── aws-memorydb-subnetgroup.json │ ├── aws-memorydb-user.json │ ├── aws-msk-batchscramsecret.json │ ├── aws-msk-cluster.json │ ├── aws-msk-clusterpolicy.json │ ├── aws-msk-configuration.json │ ├── aws-msk-replicator.json │ ├── aws-msk-serverlesscluster.json │ ├── aws-msk-vpcconnection.json │ ├── aws-mwaa-environment.json │ ├── aws-neptune-dbcluster.json │ ├── aws-neptune-dbclusterparametergroup.json │ ├── aws-neptune-dbinstance.json │ ├── aws-neptune-dbparametergroup.json │ ├── aws-neptune-dbsubnetgroup.json │ ├── aws-neptune-eventsubscription.json │ ├── aws-neptunegraph-graph.json │ ├── aws-neptunegraph-privategraphendpoint.json │ ├── aws-networkfirewall-firewall.json │ ├── aws-networkfirewall-firewallpolicy.json │ ├── aws-networkfirewall-loggingconfiguration.json │ ├── aws-networkfirewall-rulegroup.json │ ├── aws-networkfirewall-tlsinspectionconfiguration.json │ ├── aws-networkmanager-connectattachment.json │ ├── aws-networkmanager-connectpeer.json │ ├── aws-networkmanager-corenetwork.json │ ├── aws-networkmanager-customergatewayassociation.json │ ├── aws-networkmanager-device.json │ ├── aws-networkmanager-directconnectgatewayattachment.json │ ├── aws-networkmanager-globalnetwork.json │ ├── aws-networkmanager-link.json │ ├── aws-networkmanager-linkassociation.json │ ├── aws-networkmanager-site.json │ ├── aws-networkmanager-sitetositevpnattachment.json │ ├── aws-networkmanager-transitgatewaypeering.json │ ├── aws-networkmanager-transitgatewayregistration.json │ ├── aws-networkmanager-transitgatewayroutetableattachment.json │ ├── aws-networkmanager-vpcattachment.json │ ├── aws-notifications-channelassociation.json │ ├── aws-notifications-eventrule.json │ ├── aws-notifications-managednotificationaccountcontactassociation.json │ ├── aws-notifications-managednotificationadditionalchannelassociation.json │ ├── aws-notifications-notificationconfiguration.json │ ├── aws-notifications-notificationhub.json │ ├── aws-notificationscontacts-emailcontact.json │ ├── aws-oam-link.json │ ├── aws-oam-sink.json │ ├── aws-omics-annotationstore.json │ ├── aws-omics-referencestore.json │ ├── aws-omics-rungroup.json │ ├── aws-omics-sequencestore.json │ ├── aws-omics-variantstore.json │ ├── aws-omics-workflow.json │ ├── aws-opensearchserverless-accesspolicy.json │ ├── aws-opensearchserverless-collection.json │ ├── aws-opensearchserverless-index.json │ ├── aws-opensearchserverless-lifecyclepolicy.json │ ├── aws-opensearchserverless-securityconfig.json │ ├── aws-opensearchserverless-securitypolicy.json │ ├── aws-opensearchserverless-vpcendpoint.json │ ├── aws-opensearchservice-application.json │ ├── aws-opensearchservice-domain.json │ ├── aws-opsworks-app.json │ ├── aws-opsworks-elasticloadbalancerattachment.json │ ├── aws-opsworks-instance.json │ ├── aws-opsworks-layer.json │ ├── aws-opsworks-stack.json │ ├── aws-opsworks-userprofile.json │ ├── aws-opsworks-volume.json │ ├── aws-opsworkscm-server.json │ ├── aws-organizations-account.json │ ├── aws-organizations-organization.json │ ├── aws-organizations-organizationalunit.json │ ├── aws-organizations-policy.json │ ├── aws-organizations-resourcepolicy.json │ ├── aws-osis-pipeline.json │ ├── aws-panorama-applicationinstance.json │ ├── aws-panorama-package.json │ ├── aws-panorama-packageversion.json │ ├── aws-paymentcryptography-alias.json │ ├── aws-paymentcryptography-key.json │ ├── aws-pcaconnectorad-connector.json │ ├── aws-pcaconnectorad-directoryregistration.json │ ├── aws-pcaconnectorad-serviceprincipalname.json │ ├── aws-pcaconnectorad-template.json │ ├── aws-pcaconnectorad-templategroupaccesscontrolentry.json │ ├── aws-pcaconnectorscep-challenge.json │ ├── aws-pcaconnectorscep-connector.json │ ├── aws-pcs-cluster.json │ ├── aws-pcs-computenodegroup.json │ ├── aws-pcs-queue.json │ ├── aws-personalize-dataset.json │ ├── aws-personalize-datasetgroup.json │ ├── aws-personalize-schema.json │ ├── aws-personalize-solution.json │ ├── aws-pinpoint-admchannel.json │ ├── aws-pinpoint-apnschannel.json │ ├── aws-pinpoint-apnssandboxchannel.json │ ├── aws-pinpoint-apnsvoipchannel.json │ ├── aws-pinpoint-apnsvoipsandboxchannel.json │ ├── aws-pinpoint-app.json │ ├── aws-pinpoint-applicationsettings.json │ ├── aws-pinpoint-baiduchannel.json │ ├── aws-pinpoint-campaign.json │ ├── aws-pinpoint-emailchannel.json │ ├── aws-pinpoint-emailtemplate.json │ ├── aws-pinpoint-eventstream.json │ ├── aws-pinpoint-gcmchannel.json │ ├── aws-pinpoint-inapptemplate.json │ ├── aws-pinpoint-pushtemplate.json │ ├── aws-pinpoint-segment.json │ ├── aws-pinpoint-smschannel.json │ ├── aws-pinpoint-smstemplate.json │ ├── aws-pinpoint-voicechannel.json │ ├── aws-pinpointemail-configurationset.json │ ├── aws-pinpointemail-configurationseteventdestination.json │ ├── aws-pinpointemail-dedicatedippool.json │ ├── aws-pinpointemail-identity.json │ ├── aws-pipes-pipe.json │ ├── aws-proton-environmentaccountconnection.json │ ├── aws-proton-environmenttemplate.json │ ├── aws-proton-servicetemplate.json │ ├── aws-qbusiness-application.json │ ├── aws-qbusiness-dataaccessor.json │ ├── aws-qbusiness-datasource.json │ ├── aws-qbusiness-index.json │ ├── aws-qbusiness-permission.json │ ├── aws-qbusiness-plugin.json │ ├── aws-qbusiness-retriever.json │ ├── aws-qbusiness-webexperience.json │ ├── aws-qldb-ledger.json │ ├── aws-qldb-stream.json │ ├── aws-quicksight-analysis.json │ ├── aws-quicksight-custompermissions.json │ ├── aws-quicksight-dashboard.json │ ├── aws-quicksight-dataset.json │ ├── aws-quicksight-datasource.json │ ├── aws-quicksight-folder.json │ ├── aws-quicksight-refreshschedule.json │ ├── aws-quicksight-template.json │ ├── aws-quicksight-theme.json │ ├── aws-quicksight-topic.json │ ├── aws-quicksight-vpcconnection.json │ ├── aws-ram-permission.json │ ├── aws-ram-resourceshare.json │ ├── aws-rbin-rule.json │ ├── aws-rds-customdbengineversion.json │ ├── aws-rds-dbcluster.json │ ├── aws-rds-dbclusterparametergroup.json │ ├── aws-rds-dbinstance.json │ ├── aws-rds-dbparametergroup.json │ ├── aws-rds-dbproxy.json │ ├── aws-rds-dbproxyendpoint.json │ ├── aws-rds-dbproxytargetgroup.json │ ├── aws-rds-dbsecuritygroup.json │ ├── aws-rds-dbsecuritygroupingress.json │ ├── aws-rds-dbshardgroup.json │ ├── aws-rds-dbsubnetgroup.json │ ├── aws-rds-eventsubscription.json │ ├── aws-rds-globalcluster.json │ ├── aws-rds-integration.json │ ├── aws-rds-optiongroup.json │ ├── aws-redshift-cluster.json │ ├── aws-redshift-clusterparametergroup.json │ ├── aws-redshift-clustersecuritygroup.json │ ├── aws-redshift-clustersecuritygroupingress.json │ ├── aws-redshift-clustersubnetgroup.json │ ├── aws-redshift-endpointaccess.json │ ├── aws-redshift-endpointauthorization.json │ ├── aws-redshift-eventsubscription.json │ ├── aws-redshift-integration.json │ ├── aws-redshift-scheduledaction.json │ ├── aws-redshiftserverless-namespace.json │ ├── aws-redshiftserverless-workgroup.json │ ├── aws-refactorspaces-application.json │ ├── aws-refactorspaces-environment.json │ ├── aws-refactorspaces-route.json │ ├── aws-refactorspaces-service.json │ ├── aws-rekognition-collection.json │ ├── aws-rekognition-project.json │ ├── aws-rekognition-streamprocessor.json │ ├── aws-resiliencehub-app.json │ ├── aws-resiliencehub-resiliencypolicy.json │ ├── aws-resourceexplorer2-defaultviewassociation.json │ ├── aws-resourceexplorer2-index.json │ ├── aws-resourceexplorer2-view.json │ ├── aws-resourcegroups-group.json │ ├── aws-resourcegroups-tagsynctask.json │ ├── aws-robomaker-fleet.json │ ├── aws-robomaker-robot.json │ ├── aws-robomaker-robotapplication.json │ ├── aws-robomaker-robotapplicationversion.json │ ├── aws-robomaker-simulationapplication.json │ ├── aws-robomaker-simulationapplicationversion.json │ ├── aws-rolesanywhere-crl.json │ ├── aws-rolesanywhere-profile.json │ ├── aws-rolesanywhere-trustanchor.json │ ├── aws-route53-cidrcollection.json │ ├── aws-route53-dnssec.json │ ├── aws-route53-healthcheck.json │ ├── aws-route53-hostedzone.json │ ├── aws-route53-keysigningkey.json │ ├── aws-route53-recordset.json │ ├── aws-route53-recordsetgroup.json │ ├── aws-route53profiles-profile.json │ ├── aws-route53profiles-profileassociation.json │ ├── aws-route53profiles-profileresourceassociation.json │ ├── aws-route53recoverycontrol-cluster.json │ ├── aws-route53recoverycontrol-controlpanel.json │ ├── aws-route53recoverycontrol-routingcontrol.json │ ├── aws-route53recoverycontrol-safetyrule.json │ ├── aws-route53recoveryreadiness-cell.json │ ├── aws-route53recoveryreadiness-readinesscheck.json │ ├── aws-route53recoveryreadiness-recoverygroup.json │ ├── aws-route53recoveryreadiness-resourceset.json │ ├── aws-route53resolver-firewalldomainlist.json │ ├── aws-route53resolver-firewallrulegroup.json │ ├── aws-route53resolver-firewallrulegroupassociation.json │ ├── aws-route53resolver-outpostresolver.json │ ├── aws-route53resolver-resolverconfig.json │ ├── aws-route53resolver-resolverdnssecconfig.json │ ├── aws-route53resolver-resolverendpoint.json │ ├── aws-route53resolver-resolverqueryloggingconfig.json │ ├── aws-route53resolver-resolverqueryloggingconfigassociation.json │ ├── aws-route53resolver-resolverrule.json │ ├── aws-route53resolver-resolverruleassociation.json │ ├── aws-rum-appmonitor.json │ ├── aws-s3-accessgrant.json │ ├── aws-s3-accessgrantsinstance.json │ ├── aws-s3-accessgrantslocation.json │ ├── aws-s3-accesspoint.json │ ├── aws-s3-bucket.json │ ├── aws-s3-bucketpolicy.json │ ├── aws-s3-multiregionaccesspoint.json │ ├── aws-s3-multiregionaccesspointpolicy.json │ ├── aws-s3-storagelens.json │ ├── aws-s3-storagelensgroup.json │ ├── aws-s3express-bucketpolicy.json │ ├── aws-s3express-directorybucket.json │ ├── aws-s3objectlambda-accesspoint.json │ ├── aws-s3objectlambda-accesspointpolicy.json │ ├── aws-s3outposts-accesspoint.json │ ├── aws-s3outposts-bucket.json │ ├── aws-s3outposts-bucketpolicy.json │ ├── aws-s3outposts-endpoint.json │ ├── aws-s3tables-tablebucket.json │ ├── aws-s3tables-tablebucketpolicy.json │ ├── aws-sagemaker-app.json │ ├── aws-sagemaker-appimageconfig.json │ ├── aws-sagemaker-cluster.json │ ├── aws-sagemaker-coderepository.json │ ├── aws-sagemaker-dataqualityjobdefinition.json │ ├── aws-sagemaker-device.json │ ├── aws-sagemaker-devicefleet.json │ ├── aws-sagemaker-domain.json │ ├── aws-sagemaker-endpoint.json │ ├── aws-sagemaker-endpointconfig.json │ ├── aws-sagemaker-featuregroup.json │ ├── aws-sagemaker-image.json │ ├── aws-sagemaker-imageversion.json │ ├── aws-sagemaker-inferencecomponent.json │ ├── aws-sagemaker-inferenceexperiment.json │ ├── aws-sagemaker-mlflowtrackingserver.json │ ├── aws-sagemaker-model.json │ ├── aws-sagemaker-modelbiasjobdefinition.json │ ├── aws-sagemaker-modelcard.json │ ├── aws-sagemaker-modelexplainabilityjobdefinition.json │ ├── aws-sagemaker-modelpackage.json │ ├── aws-sagemaker-modelpackagegroup.json │ ├── aws-sagemaker-modelqualityjobdefinition.json │ ├── aws-sagemaker-monitoringschedule.json │ ├── aws-sagemaker-notebookinstance.json │ ├── aws-sagemaker-notebookinstancelifecycleconfig.json │ ├── aws-sagemaker-partnerapp.json │ ├── aws-sagemaker-pipeline.json │ ├── aws-sagemaker-project.json │ ├── aws-sagemaker-space.json │ ├── aws-sagemaker-studiolifecycleconfig.json │ ├── aws-sagemaker-userprofile.json │ ├── aws-sagemaker-workteam.json │ ├── aws-scheduler-schedule.json │ ├── aws-scheduler-schedulegroup.json │ ├── aws-sdb-domain.json │ ├── aws-secretsmanager-resourcepolicy.json │ ├── aws-secretsmanager-rotationschedule.json │ ├── aws-secretsmanager-secret.json │ ├── aws-secretsmanager-secrettargetattachment.json │ ├── aws-securityhub-automationrule.json │ ├── aws-securityhub-configurationpolicy.json │ ├── aws-securityhub-delegatedadmin.json │ ├── aws-securityhub-findingaggregator.json │ ├── aws-securityhub-hub.json │ ├── aws-securityhub-insight.json │ ├── aws-securityhub-organizationconfiguration.json │ ├── aws-securityhub-policyassociation.json │ ├── aws-securityhub-productsubscription.json │ ├── aws-securityhub-securitycontrol.json │ ├── aws-securityhub-standard.json │ ├── aws-securitylake-awslogsource.json │ ├── aws-securitylake-datalake.json │ ├── aws-securitylake-subscriber.json │ ├── aws-securitylake-subscribernotification.json │ ├── aws-servicecatalog-acceptedportfolioshare.json │ ├── aws-servicecatalog-cloudformationproduct.json │ ├── aws-servicecatalog-cloudformationprovisionedproduct.json │ ├── aws-servicecatalog-launchnotificationconstraint.json │ ├── aws-servicecatalog-launchroleconstraint.json │ ├── aws-servicecatalog-launchtemplateconstraint.json │ ├── aws-servicecatalog-portfolio.json │ ├── aws-servicecatalog-portfolioprincipalassociation.json │ ├── aws-servicecatalog-portfolioproductassociation.json │ ├── aws-servicecatalog-portfolioshare.json │ ├── aws-servicecatalog-resourceupdateconstraint.json │ ├── aws-servicecatalog-serviceaction.json │ ├── aws-servicecatalog-serviceactionassociation.json │ ├── aws-servicecatalog-stacksetconstraint.json │ ├── aws-servicecatalog-tagoption.json │ ├── aws-servicecatalog-tagoptionassociation.json │ ├── aws-servicecatalogappregistry-application.json │ ├── aws-servicecatalogappregistry-attributegroup.json │ ├── aws-servicecatalogappregistry-attributegroupassociation.json │ ├── aws-servicecatalogappregistry-resourceassociation.json │ ├── aws-servicediscovery-httpnamespace.json │ ├── aws-servicediscovery-instance.json │ ├── aws-servicediscovery-privatednsnamespace.json │ ├── aws-servicediscovery-publicdnsnamespace.json │ ├── aws-servicediscovery-service.json │ ├── aws-ses-configurationset.json │ ├── aws-ses-configurationseteventdestination.json │ ├── aws-ses-contactlist.json │ ├── aws-ses-dedicatedippool.json │ ├── aws-ses-emailidentity.json │ ├── aws-ses-mailmanageraddoninstance.json │ ├── aws-ses-mailmanageraddonsubscription.json │ ├── aws-ses-mailmanagerarchive.json │ ├── aws-ses-mailmanageringresspoint.json │ ├── aws-ses-mailmanagerrelay.json │ ├── aws-ses-mailmanagerruleset.json │ ├── aws-ses-mailmanagertrafficpolicy.json │ ├── aws-ses-receiptfilter.json │ ├── aws-ses-receiptrule.json │ ├── aws-ses-receiptruleset.json │ ├── aws-ses-template.json │ ├── aws-ses-vdmattributes.json │ ├── aws-shield-drtaccess.json │ ├── aws-shield-proactiveengagement.json │ ├── aws-shield-protection.json │ ├── aws-shield-protectiongroup.json │ ├── aws-signer-profilepermission.json │ ├── aws-signer-signingprofile.json │ ├── aws-simspaceweaver-simulation.json │ ├── aws-sns-subscription.json │ ├── aws-sns-topic.json │ ├── aws-sns-topicinlinepolicy.json │ ├── aws-sns-topicpolicy.json │ ├── aws-sqs-queue.json │ ├── aws-sqs-queueinlinepolicy.json │ ├── aws-sqs-queuepolicy.json │ ├── aws-ssm-association.json │ ├── aws-ssm-document.json │ ├── aws-ssm-maintenancewindow.json │ ├── aws-ssm-maintenancewindowtarget.json │ ├── aws-ssm-maintenancewindowtask.json │ ├── aws-ssm-parameter.json │ ├── aws-ssm-patchbaseline.json │ ├── aws-ssm-resourcedatasync.json │ ├── aws-ssm-resourcepolicy.json │ ├── aws-ssmcontacts-contact.json │ ├── aws-ssmcontacts-contactchannel.json │ ├── aws-ssmcontacts-plan.json │ ├── aws-ssmcontacts-rotation.json │ ├── aws-ssmincidents-replicationset.json │ ├── aws-ssmincidents-responseplan.json │ ├── aws-ssmquicksetup-configurationmanager.json │ ├── aws-sso-application.json │ ├── aws-sso-applicationassignment.json │ ├── aws-sso-assignment.json │ ├── aws-sso-instance.json │ ├── aws-sso-instanceaccesscontrolattributeconfiguration.json │ ├── aws-sso-permissionset.json │ ├── aws-stepfunctions-activity.json │ ├── aws-stepfunctions-statemachine.json │ ├── aws-stepfunctions-statemachinealias.json │ ├── aws-stepfunctions-statemachineversion.json │ ├── aws-supportapp-accountalias.json │ ├── aws-supportapp-slackchannelconfiguration.json │ ├── aws-supportapp-slackworkspaceconfiguration.json │ ├── aws-synthetics-canary.json │ ├── aws-synthetics-group.json │ ├── aws-systemsmanagersap-application.json │ ├── aws-timestream-database.json │ ├── aws-timestream-influxdbinstance.json │ ├── aws-timestream-scheduledquery.json │ ├── aws-timestream-table.json │ ├── aws-transfer-agreement.json │ ├── aws-transfer-certificate.json │ ├── aws-transfer-connector.json │ ├── aws-transfer-profile.json │ ├── aws-transfer-server.json │ ├── aws-transfer-user.json │ ├── aws-transfer-webapp.json │ ├── aws-transfer-workflow.json │ ├── aws-verifiedpermissions-identitysource.json │ ├── aws-verifiedpermissions-policy.json │ ├── aws-verifiedpermissions-policystore.json │ ├── aws-verifiedpermissions-policytemplate.json │ ├── aws-voiceid-domain.json │ ├── aws-vpclattice-accesslogsubscription.json │ ├── aws-vpclattice-authpolicy.json │ ├── aws-vpclattice-listener.json │ ├── aws-vpclattice-resourceconfiguration.json │ ├── aws-vpclattice-resourcegateway.json │ ├── aws-vpclattice-resourcepolicy.json │ ├── aws-vpclattice-rule.json │ ├── aws-vpclattice-service.json │ ├── aws-vpclattice-servicenetwork.json │ ├── aws-vpclattice-servicenetworkresourceassociation.json │ ├── aws-vpclattice-servicenetworkserviceassociation.json │ ├── aws-vpclattice-servicenetworkvpcassociation.json │ ├── aws-vpclattice-targetgroup.json │ ├── aws-waf-bytematchset.json │ ├── aws-waf-ipset.json │ ├── aws-waf-rule.json │ ├── aws-waf-sizeconstraintset.json │ ├── aws-waf-sqlinjectionmatchset.json │ ├── aws-waf-webacl.json │ ├── aws-waf-xssmatchset.json │ ├── aws-wafregional-bytematchset.json │ ├── aws-wafregional-geomatchset.json │ ├── aws-wafregional-ipset.json │ ├── aws-wafregional-ratebasedrule.json │ ├── aws-wafregional-regexpatternset.json │ ├── aws-wafregional-rule.json │ ├── aws-wafregional-sizeconstraintset.json │ ├── aws-wafregional-sqlinjectionmatchset.json │ ├── aws-wafregional-webacl.json │ ├── aws-wafregional-webaclassociation.json │ ├── aws-wafregional-xssmatchset.json │ ├── aws-wafv2-ipset.json │ ├── aws-wafv2-loggingconfiguration.json │ ├── aws-wafv2-regexpatternset.json │ ├── aws-wafv2-rulegroup.json │ ├── aws-wafv2-webacl.json │ ├── aws-wafv2-webaclassociation.json │ ├── aws-wisdom-aiagent.json │ ├── aws-wisdom-aiagentversion.json │ ├── aws-wisdom-aiguardrail.json │ ├── aws-wisdom-aiguardrailversion.json │ ├── aws-wisdom-aiprompt.json │ ├── aws-wisdom-aipromptversion.json │ ├── aws-wisdom-assistant.json │ ├── aws-wisdom-assistantassociation.json │ ├── aws-wisdom-knowledgebase.json │ ├── aws-wisdom-messagetemplate.json │ ├── aws-wisdom-messagetemplateversion.json │ ├── aws-workspaces-connectionalias.json │ ├── aws-workspaces-workspace.json │ ├── aws-workspaces-workspacespool.json │ ├── aws-workspacesthinclient-environment.json │ ├── aws-workspacesweb-browsersettings.json │ ├── aws-workspacesweb-dataprotectionsettings.json │ ├── aws-workspacesweb-identityprovider.json │ ├── aws-workspacesweb-ipaccesssettings.json │ ├── aws-workspacesweb-networksettings.json │ ├── aws-workspacesweb-portal.json │ ├── aws-workspacesweb-truststore.json │ ├── aws-workspacesweb-useraccessloggingsettings.json │ ├── aws-workspacesweb-usersettings.json │ ├── aws-xray-group.json │ ├── aws-xray-resourcepolicy.json │ ├── aws-xray-samplingrule.json │ ├── aws-xray-transactionsearchconfig.json │ ├── find-permissions.ps1 │ ├── update.ps1 │ └── update.sh ├── secrets.go ├── secrets_Internal_test.go ├── secrets_test.go ├── terraform.azurepolicy.template ├── terraform.gcppolicy.template ├── terraform.policy.template ├── testdata │ ├── azurerm │ │ └── backend │ │ │ └── terraform.tf │ ├── biscuit.md │ ├── gcp │ │ └── basic │ │ │ └── storage.tf │ ├── init │ │ └── nicconf │ │ │ ├── README.md │ │ │ ├── api_gateway.tf │ │ │ ├── dynamodb.tf │ │ │ ├── lambda_get.tf │ │ │ ├── lambda_post.tf │ │ │ ├── main.tf │ │ │ └── outputs.tf │ ├── plan │ │ └── simple │ │ │ └── aws_s3_bucket.basic.tf │ ├── scan │ │ └── examples │ │ │ ├── dynamic │ │ │ └── dynamic.tf │ │ │ ├── empty │ │ │ └── empty.tf │ │ │ ├── random │ │ │ └── random_string.pike.tf │ │ │ └── simple │ │ │ └── aws_s3_bucket.pike.tf │ ├── test-readme-empty.md │ ├── test-readme-wrong.md │ └── test-readme.md ├── types.go ├── types_test.go ├── utils.go ├── utils_test.go ├── version.go ├── watch.go ├── watch_internal_test.go └── watch_test.go ├── terraform ├── aws │ ├── Makefile │ ├── backup │ │ ├── Frank_Pike.png │ │ ├── README.md │ │ ├── aws_accessanalyzer_analyzer.tf │ │ ├── aws_accessanalyzer_archive_rule.tf │ │ ├── aws_account_alternate_contact.tf │ │ ├── aws_account_primary_contact.tf │ │ ├── aws_account_region.tf │ │ ├── aws_acm_certificate.tf │ │ ├── aws_acmpca_certificate.tf │ │ ├── aws_acmpca_certificate_authority.tf │ │ ├── aws_acmpca_certificate_authority_certificate.tf │ │ ├── aws_acmpca_permission.tf │ │ ├── aws_acmpca_policy.tf │ │ ├── aws_ami.tf │ │ ├── aws_ami_copy.tf │ │ ├── aws_ami_from_instance.tf │ │ ├── aws_ami_launch_permission.tf │ │ ├── aws_amplify_app.tf │ │ ├── aws_amplify_backend_environment.tf │ │ ├── aws_amplify_branch.tf │ │ ├── aws_amplify_domain_association.tf │ │ ├── aws_amplify_webhook.tf │ │ ├── aws_api_gateway_api_key.tf │ │ ├── aws_api_gateway_authorizer.tf │ │ ├── aws_api_gateway_base_path_mapping.tf │ │ ├── aws_api_gateway_client_certificate.tf │ │ ├── aws_api_gateway_deployment.tf │ │ ├── aws_api_gateway_documentation_part.tf │ │ ├── aws_api_gateway_documentation_version.tf │ │ ├── aws_api_gateway_domain_name.tf │ │ ├── aws_api_gateway_domain_name_access_association.tf │ │ ├── aws_api_gateway_gateway_response.tf │ │ ├── aws_api_gateway_integration.tf │ │ ├── aws_api_gateway_model.tf │ │ ├── aws_api_gateway_request_validator.tf │ │ ├── aws_api_gateway_rest_api.tf │ │ ├── aws_api_gateway_rest_api_policy.tf │ │ ├── aws_api_gateway_rest_api_put.tf │ │ ├── aws_api_gateway_vpc_link.tf │ │ ├── aws_apigatewayv2_api.tf │ │ ├── aws_apigatewayv2_deployment.tf │ │ ├── aws_apigatewayv2_integration_response.tf │ │ ├── aws_apigatewayv2_model.tf │ │ ├── aws_apigatewayv2_route_response.tf │ │ ├── aws_app_cookie_stickiness_policy.tf │ │ ├── aws_appautoscaling_policy.tf │ │ ├── aws_appautoscaling_scheduled_action.tf │ │ ├── aws_appautoscaling_target.tf │ │ ├── aws_appconfig_configuration_profile.tf │ │ ├── aws_appconfig_deployment.tf │ │ ├── aws_appconfig_deployment_strategy.tf │ │ ├── aws_appconfig_environment.tf │ │ ├── aws_appconfig_extension.tf │ │ ├── aws_appconfig_extension_association.tf │ │ ├── aws_appconfig_hosted_configuration_version.tf │ │ ├── aws_appfabric_app_authorization.tf │ │ ├── aws_appfabric_app_authorization_connection.tf │ │ ├── aws_appfabric_app_bundle.tf │ │ ├── aws_appfabric_ingestion.tf │ │ ├── aws_appfabric_ingestion_destination.tf │ │ ├── aws_appflow_connector_profile.tf │ │ ├── aws_appflow_flow.tf │ │ ├── aws_appintegrations_data_integration.tf │ │ ├── aws_appintegrations_event_integration.tf │ │ ├── aws_applicationinsights_application.tf │ │ ├── aws_appmesh_gateway_route.tf │ │ ├── aws_appmesh_mesh.tf │ │ ├── aws_appmesh_route.tf │ │ ├── aws_appmesh_virtual_gateway.tf │ │ ├── aws_appmesh_virtual_node.tf │ │ ├── aws_appmesh_virtual_router.tf │ │ ├── aws_appmesh_virtual_service.tf │ │ ├── aws_apprunner_auto_scaling_configuration_version.tf │ │ ├── aws_apprunner_connection.tf │ │ ├── aws_apprunner_custom_domain_association.tf │ │ ├── aws_apprunner_default_auto_scaling_configuration_version.tf │ │ ├── aws_apprunner_deployment.tf │ │ ├── aws_apprunner_observability_configuration.tf │ │ ├── aws_apprunner_service.tf │ │ ├── aws_apprunner_vpc_connector.tf │ │ ├── aws_apprunner_vpc_ingress_connection.tf │ │ ├── aws_appstream_directory_config.tf │ │ ├── aws_appstream_fleet.tf │ │ ├── aws_appstream_fleet_stack_association.tf │ │ ├── aws_appstream_image_builder.tf │ │ ├── aws_appstream_stack.tf │ │ ├── aws_appstream_user.tf │ │ ├── aws_appstream_user_stack_association.tf │ │ ├── aws_appsync_api_cache.tf │ │ ├── aws_appsync_api_key.tf │ │ ├── aws_appsync_datasource.tf │ │ ├── aws_appsync_domain_name.tf │ │ ├── aws_appsync_domain_name_api_association.tf │ │ ├── aws_appsync_function.tf │ │ ├── aws_appsync_graphql_api.tf │ │ ├── aws_appsync_resolver.tf │ │ ├── aws_appsync_source_api_association.tf │ │ ├── aws_appsync_type.tf │ │ ├── aws_athena_capacity_reservation.tf │ │ ├── aws_athena_data_catalog.tf │ │ ├── aws_athena_database.tf │ │ ├── aws_athena_named_query.tf │ │ ├── aws_athena_prepared_statement.tf │ │ ├── aws_athena_workgroup.tf │ │ ├── aws_auditmanager_account_registration.tf │ │ ├── aws_auditmanager_assessment.tf │ │ ├── aws_auditmanager_assessment_delegation.tf │ │ ├── aws_auditmanager_assessment_report.tf │ │ ├── aws_auditmanager_control.tf │ │ ├── aws_auditmanager_framework.tf │ │ ├── aws_auditmanager_framework_share.tf │ │ ├── aws_auditmanager_organization_admin_account_registration.tf │ │ ├── aws_autoscaling_attachment.tf │ │ ├── aws_autoscaling_group.tf │ │ ├── aws_autoscaling_group_tag.tf │ │ ├── aws_autoscaling_lifecycle_hook.tf │ │ ├── aws_autoscaling_notification.tf │ │ ├── aws_autoscaling_policy.tf │ │ ├── aws_autoscaling_schedule.tf │ │ ├── aws_autoscaling_traffic_source_attachment.tf │ │ ├── aws_autoscalingplans_scaling_plan.tf │ │ ├── aws_backup_framework.tf │ │ ├── aws_backup_global_settings.tf │ │ ├── aws_backup_logically_air_gapped_vault.tf │ │ ├── aws_backup_plan.tf │ │ ├── aws_backup_region_settings.tf │ │ ├── aws_backup_report_plan.tf │ │ ├── aws_backup_restore_testing_plan.tf │ │ ├── aws_backup_selection.tf │ │ ├── aws_backup_vault.tf │ │ ├── aws_backup_vault_lock_configuration.tf │ │ ├── aws_backup_vault_notifications.tf │ │ ├── aws_backup_vault_policy.tf │ │ ├── aws_batch_compute_environment.tf │ │ ├── aws_batch_job_definition.tf │ │ ├── aws_batch_job_queue.tf │ │ ├── aws_batch_scheduling_policy.tf │ │ ├── aws_bcmdataexports_export.tf │ │ ├── aws_bedrock_custom_model.tf │ │ ├── aws_bedrock_guardrail.tf │ │ ├── aws_bedrock_guardrail_version.tf │ │ ├── aws_bedrock_inference_profile.tf │ │ ├── aws_bedrock_model_invocation_logging_configuration.tf │ │ ├── aws_bedrock_provisioned_model_throughput.tf │ │ ├── aws_bedrockagent_agent.tf │ │ ├── aws_bedrockagent_agent_action_group.tf │ │ ├── aws_bedrockagent_agent_alias.tf │ │ ├── aws_bedrockagent_agent_collaborator.tf │ │ ├── aws_bedrockagent_agent_knowledge_base_association.tf │ │ ├── aws_bedrockagent_data_source.tf │ │ ├── aws_bedrockagent_knowledge_base.tf │ │ ├── aws_bedrockagent_prompt.tf │ │ ├── aws_bogus.pike.tf │ │ ├── aws_budget_budgets.tf │ │ ├── aws_budgets_budget_action.tf │ │ ├── aws_ce_anomaly_monitor.tf │ │ ├── aws_ce_anomaly_subscription.tf │ │ ├── aws_ce_cost_allocation_tag.tf │ │ ├── aws_ce_cost_category.tf │ │ ├── aws_chatbot_slack_channel_configuration.tf │ │ ├── aws_chatbot_teams_channel_configuration.tf │ │ ├── aws_chime_voice_connector.tf │ │ ├── aws_chime_voice_connector_group.tf │ │ ├── aws_chime_voice_connector_logging.tf │ │ ├── aws_chime_voice_connector_origination.tf │ │ ├── aws_chime_voice_connector_streaming.tf │ │ ├── aws_chime_voice_connector_termination.tf │ │ ├── aws_chime_voice_connector_termination_credentials.tf │ │ ├── aws_chimesdkmediapipelines_media_insights_pipeline_configuration.tf │ │ ├── aws_chimesdkvoice_global_settings.tf │ │ ├── aws_chimesdkvoice_sip_media_application.tf │ │ ├── aws_chimesdkvoice_sip_rule.tf │ │ ├── aws_chimesdkvoice_voice_profile_domain.tf │ │ ├── aws_cleanrooms_collaboration.tf │ │ ├── aws_cleanrooms_configured_table.tf │ │ ├── aws_cleanrooms_membership.tf │ │ ├── aws_cloud9_environment_ec2.tf │ │ ├── aws_cloud9_environment_membership.tf │ │ ├── aws_cloudcontrolapi_resource.tf │ │ ├── aws_cloudformation_stack.tf │ │ ├── aws_cloudformation_stack_instances.tf │ │ ├── aws_cloudformation_stack_set.tf │ │ ├── aws_cloudformation_stack_set_instance.tf │ │ ├── aws_cloudformation_type.tf │ │ ├── aws_cloudfront_cache_policy.tf │ │ ├── aws_cloudfront_continuous_deployment_policy.tf │ │ ├── aws_cloudfront_distribution.tf │ │ ├── aws_cloudfront_field_level_encryption_config.tf │ │ ├── aws_cloudfront_field_level_encryption_profile.tf │ │ ├── aws_cloudfront_function.tf │ │ ├── aws_cloudfront_key_group.tf │ │ ├── aws_cloudfront_key_value_store.tf │ │ ├── aws_cloudfront_monitoring_subscription.tf │ │ ├── aws_cloudfront_origin_access_control.tf │ │ ├── aws_cloudfront_origin_access_identity.tf │ │ ├── aws_cloudfront_origin_request_policy.tf │ │ ├── aws_cloudfront_public_key.tf │ │ ├── aws_cloudfront_realtime_log_config.tf │ │ ├── aws_cloudfront_response_headers_policy.tf │ │ ├── aws_cloudfront_vpc_origin.tf │ │ ├── aws_cloudfrontkeyvaluestore_key.tf │ │ ├── aws_cloudfrontkeyvaluestore_keys_exclusive.tf │ │ ├── aws_cloudhsm_v2_cluster.tf │ │ ├── aws_cloudhsm_v2_hsm.tf │ │ ├── aws_cloudsearch_domain.tf │ │ ├── aws_cloudsearch_domain_service_access_policy.tf │ │ ├── aws_cloudtrail.tf │ │ ├── aws_cloudtrail_event_data_store.tf │ │ ├── aws_cloudtrail_organization_delegated_admin_account.tf │ │ ├── aws_cloudwatch_composite_alarm.tf │ │ ├── aws_cloudwatch_contributor_insight_rule.tf │ │ ├── aws_cloudwatch_contributor_managed_insight_rule.tf │ │ ├── aws_cloudwatch_dashboard.tf │ │ ├── aws_cloudwatch_event_api_destination.tf │ │ ├── aws_cloudwatch_event_archive.tf │ │ ├── aws_cloudwatch_event_bus.tf │ │ ├── aws_cloudwatch_event_bus_policy.tf │ │ ├── aws_cloudwatch_event_connection.tf │ │ ├── aws_cloudwatch_event_endpoint.tf │ │ ├── aws_cloudwatch_event_permission.tf │ │ ├── aws_cloudwatch_event_rule.tf │ │ ├── aws_cloudwatch_event_target.tf │ │ ├── aws_cloudwatch_log_account_policy.tf │ │ ├── aws_cloudwatch_log_anomaly_detector.tf │ │ ├── aws_cloudwatch_log_data_protection_policy.tf │ │ ├── aws_cloudwatch_log_delivery.tf │ │ ├── aws_cloudwatch_log_delivery_destination.tf │ │ ├── aws_cloudwatch_log_delivery_destination_policy.tf │ │ ├── aws_cloudwatch_log_delivery_source.tf │ │ ├── aws_cloudwatch_log_destination.tf │ │ ├── aws_cloudwatch_log_destination_policy.tf │ │ ├── aws_cloudwatch_log_group.tf │ │ ├── aws_cloudwatch_log_index_policy.tf │ │ ├── aws_cloudwatch_log_metric_filter.tf │ │ ├── aws_cloudwatch_log_resource_policy.tf │ │ ├── aws_cloudwatch_log_stream.tf │ │ ├── aws_cloudwatch_log_subscription_filter.tf │ │ ├── aws_cloudwatch_metric_alarm.tf │ │ ├── aws_cloudwatch_metric_stream.tf │ │ ├── aws_cloudwatch_query_definition.tf │ │ ├── aws_codeartifact_domain.tf │ │ ├── aws_codeartifact_domain_permissions_policy.tf │ │ ├── aws_codeartifact_repository.tf │ │ ├── aws_codeartifact_repository_permissions_policy.tf │ │ ├── aws_codebuild_fleet.tf │ │ ├── aws_codebuild_project.tf │ │ ├── aws_codebuild_resource_policy.tf │ │ ├── aws_codebuild_source_credential.tf │ │ ├── aws_codebuild_webhook.tf │ │ ├── aws_codecatalyst_dev_environment.tf │ │ ├── aws_codecatalyst_project.tf │ │ ├── aws_codecatalyst_source_repository.tf │ │ ├── aws_codecommit_approval_rule_template.tf │ │ ├── aws_codecommit_approval_rule_template_association.tf │ │ ├── aws_codecommit_repository.tf │ │ ├── aws_codecommit_trigger.tf │ │ ├── aws_codeconnections_connection.tf │ │ ├── aws_codeconnections_host.tf │ │ ├── aws_codedeploy_app.tf │ │ ├── aws_codedeploy_deployment_config.tf │ │ ├── aws_codedeploy_deployment_group.tf │ │ ├── aws_codeguruprofiler_profiling_group.tf │ │ ├── aws_codegurureviewer_repository_association.tf │ │ ├── aws_codepipeline_custom_action_type.tf │ │ ├── aws_codepipeline_project.tf │ │ ├── aws_codepipeline_webhook.tf │ │ ├── aws_codestarconnections_connection.tf │ │ ├── aws_codestarconnections_host.tf │ │ ├── aws_codestarnotifications_notification_rule.tf │ │ ├── aws_cognito_identity_pool.tf │ │ ├── aws_cognito_identity_pool_provider_principal_tag.tf │ │ ├── aws_cognito_identity_pool_roles_attachment.tf │ │ ├── aws_cognito_identity_provider.tf │ │ ├── aws_cognito_managed_user_pool_client.tf │ │ ├── aws_cognito_resource_server.tf │ │ ├── aws_cognito_risk_configuration.tf │ │ ├── aws_cognito_user.tf │ │ ├── aws_cognito_user_group.tf │ │ ├── aws_cognito_user_in_group.tf │ │ ├── aws_cognito_user_pool.tf │ │ ├── aws_cognito_user_pool_client.tf │ │ ├── aws_cognito_user_pool_domain.tf │ │ ├── aws_cognito_user_pool_ui_customization.tf │ │ ├── aws_comprehend_document_classifier.tf │ │ ├── aws_comprehend_entity_recognizer.tf │ │ ├── aws_computeoptimizer_enrollment_status.tf │ │ ├── aws_computeoptimizer_recommendation_preferences.tf │ │ ├── aws_config_aggregate_authorization.tf │ │ ├── aws_config_config_rule.tf │ │ ├── aws_config_configuration_aggregator.tf │ │ ├── aws_config_configuration_recorder.tf │ │ ├── aws_config_configuration_recorder_status.tf │ │ ├── aws_config_conformance_pack.tf │ │ ├── aws_config_delivery_channel.tf │ │ ├── aws_config_organization_conformance_pack.tf │ │ ├── aws_config_organization_custom_policy_rule.tf │ │ ├── aws_config_organization_custom_rule.tf │ │ ├── aws_config_organization_managed_rule.tf │ │ ├── aws_config_remediation_configuration.tf │ │ ├── aws_config_retention_configuration.tf │ │ ├── aws_connect_bot_association.tf │ │ ├── aws_connect_contact_flow.tf │ │ ├── aws_connect_contact_flow_module.tf │ │ ├── aws_connect_hours_of_operation.tf │ │ ├── aws_connect_instance.tf │ │ ├── aws_connect_instance_storage_config.tf │ │ ├── aws_connect_lambda_function_association.tf │ │ ├── aws_connect_phone_number.tf │ │ ├── aws_connect_queue.tf │ │ ├── aws_connect_quick_connect.tf │ │ ├── aws_connect_routing_profile.tf │ │ ├── aws_connect_security_profile.tf │ │ ├── aws_connect_user.tf │ │ ├── aws_connect_user_hierarchy_group.tf │ │ ├── aws_connect_user_hierarchy_structure.tf │ │ ├── aws_connect_vocabulary.tf │ │ ├── aws_controltower_control.tf │ │ ├── aws_controltower_landing_zone.tf │ │ ├── aws_costoptimizationhub_enrollment_status.tf │ │ ├── aws_costoptimizationhub_preferences.tf │ │ ├── aws_cur_report_definition.tf │ │ ├── aws_customer_gateway.tf │ │ ├── aws_customerprofiles_domain.tf │ │ ├── aws_customerprofiles_profile.tf │ │ ├── aws_dataexchange_data_set.tf │ │ ├── aws_dataexchange_event_action.tf │ │ ├── aws_dataexchange_revision.tf │ │ ├── aws_dataexchange_revision_assets.tf │ │ ├── aws_datapipeline_pipeline.tf │ │ ├── aws_datapipeline_pipeline_definition.tf │ │ ├── aws_datasync_agent.tf │ │ ├── aws_datasync_location_azure_blob.tf │ │ ├── aws_datasync_location_efs.tf │ │ ├── aws_datasync_location_fsx_lustre_file_system.tf │ │ ├── aws_datasync_location_fsx_ontap_file_system.tf │ │ ├── aws_datasync_location_fsx_openzfs_file_system.tf │ │ ├── aws_datasync_location_fsx_windows_file_system.tf │ │ ├── aws_datasync_location_hdfs.tf │ │ ├── aws_datasync_location_nfs.tf │ │ ├── aws_datasync_location_object_storage.tf │ │ ├── aws_datasync_location_s3.tf │ │ ├── aws_datasync_location_smb.tf │ │ ├── aws_datasync_task.tf │ │ ├── aws_datazone_asset_type.tf │ │ ├── aws_datazone_domain.tf │ │ ├── aws_datazone_environment.tf │ │ ├── aws_datazone_environment_blueprint_configuration.tf │ │ ├── aws_datazone_environment_profile.tf │ │ ├── aws_datazone_form_type.tf │ │ ├── aws_datazone_glossary.tf │ │ ├── aws_datazone_glossary_term.tf │ │ ├── aws_datazone_project.tf │ │ ├── aws_datazone_user_profile.tf │ │ ├── aws_dax_cluster.tf │ │ ├── aws_dax_parameter_group.tf │ │ ├── aws_dax_subnet_group.tf │ │ ├── aws_db_cluster_snapshot.tf │ │ ├── aws_db_event_subscription.tf │ │ ├── aws_db_instance.tf │ │ ├── aws_db_instance_automated_backups_replication.tf │ │ ├── aws_db_instance_role_association.tf │ │ ├── aws_db_option_group.tf │ │ ├── aws_db_parameter_group.tf │ │ ├── aws_db_proxy.tf │ │ ├── aws_db_proxy_default_target_group.tf │ │ ├── aws_db_proxy_endpoint.tf │ │ ├── aws_db_proxy_target.tf │ │ ├── aws_db_snapshot.tf │ │ ├── aws_db_snapshot_copy.tf │ │ ├── aws_db_subnet_group.tf │ │ ├── aws_default_network_acl.tf │ │ ├── aws_default_route_table.tf │ │ ├── aws_default_security_group.tf │ │ ├── aws_default_subnet.tf │ │ ├── aws_default_vpc.tf │ │ ├── aws_default_vpc_dhcp_options.tf │ │ ├── aws_detective_graph.tf │ │ ├── aws_detective_invitation_accepter.tf │ │ ├── aws_detective_member.tf │ │ ├── aws_detective_organization_admin_account.tf │ │ ├── aws_detective_organization_configuration.tf │ │ ├── aws_devicefarm_device_pool.tf │ │ ├── aws_devicefarm_instance_profile.tf │ │ ├── aws_devicefarm_network_profile.tf │ │ ├── aws_devicefarm_project.tf │ │ ├── aws_devicefarm_upload.tf │ │ ├── aws_devopsguru_event_sources_config.tf │ │ ├── aws_devopsguru_notification_channel.tf │ │ ├── aws_devopsguru_resource_collection.tf │ │ ├── aws_devopsguru_service_integration.tf │ │ ├── aws_directory_service_conditional_forwarder.tf │ │ ├── aws_directory_service_directory.tf │ │ ├── aws_directory_service_log_subscription.tf │ │ ├── aws_directory_service_radius_settings.tf │ │ ├── aws_directory_service_region.tf │ │ ├── aws_directory_service_shared_directory.tf │ │ ├── aws_directory_service_shared_directory_accepter.tf │ │ ├── aws_directory_service_trust.tf │ │ ├── aws_dlm_lifecycle_policy.tf │ │ ├── aws_dms_certificate.tf │ │ ├── aws_dms_endpoint.tf │ │ ├── aws_dms_event_subscription.tf │ │ ├── aws_dms_replication_config.tf │ │ ├── aws_dms_replication_instance.tf │ │ ├── aws_dms_replication_subnet_group.tf │ │ ├── aws_dms_replication_task.tf │ │ ├── aws_dms_s3_endpoint.tf │ │ ├── aws_docdb_cluster.tf │ │ ├── aws_docdb_cluster_instance.tf │ │ ├── aws_docdb_cluster_parameter_group.tf │ │ ├── aws_docdb_cluster_snapshot.tf │ │ ├── aws_docdb_event_subscription.tf │ │ ├── aws_docdb_global_cluster.tf │ │ ├── aws_docdb_subnet_group.tf │ │ ├── aws_docdbelastic_cluster.tf │ │ ├── aws_drs_replication_configuration_template.tf │ │ ├── aws_dsql_cluster.tf │ │ ├── aws_dsql_cluster_peering.tf │ │ ├── aws_dx_bgp_peer.tf │ │ ├── aws_dx_connection.tf │ │ ├── aws_dx_connection_association.tf │ │ ├── aws_dx_connection_confirmation.tf │ │ ├── aws_dx_gateway.tf │ │ ├── aws_dx_gateway_association.tf │ │ ├── aws_dx_gateway_association_proposal.tf │ │ ├── aws_dx_hosted_connection.tf │ │ ├── aws_dx_hosted_private_virtual_interface.tf │ │ ├── aws_dx_hosted_private_virtual_interface_accepter.tf │ │ ├── aws_dx_hosted_public_virtual_interface.tf │ │ ├── aws_dx_hosted_public_virtual_interface_accepter.tf │ │ ├── aws_dx_hosted_transit_virtual_interface.tf │ │ ├── aws_dx_hosted_transit_virtual_interface_accepter.tf │ │ ├── aws_dx_lag.tf │ │ ├── aws_dx_macsec_key_association.tf │ │ ├── aws_dx_private_virtual_interface.tf │ │ ├── aws_dx_public_virtual_interface.tf │ │ ├── aws_dx_transit_virtual_interface.tf │ │ ├── aws_dynamodb_contributor_insights.tf │ │ ├── aws_dynamodb_global_table.tf │ │ ├── aws_dynamodb_kinesis_streaming_destination.tf │ │ ├── aws_dynamodb_resource_policy.tf │ │ ├── aws_dynamodb_table.tf │ │ ├── aws_dynamodb_table_export.tf │ │ ├── aws_dynamodb_table_item.tf │ │ ├── aws_dynamodb_table_replica.tf │ │ ├── aws_dynamodb_tag.tf │ │ ├── aws_ebs_default_kms_key.tf │ │ ├── aws_ebs_encryption_by_default.tf │ │ ├── aws_ebs_fast_snapshot_restore.tf │ │ ├── aws_ebs_snapshot.tf │ │ ├── aws_ebs_snapshot_block_public_access.tf │ │ ├── aws_ebs_snapshot_copy.tf │ │ ├── aws_ebs_snapshot_import.tf │ │ ├── aws_ebs_volume.tf │ │ ├── aws_ec2_availability_zone_group.tf │ │ ├── aws_ec2_capacity_block_reservation.tf │ │ ├── aws_ec2_capacity_reservation.tf │ │ ├── aws_ec2_carrier_gateway.tf │ │ ├── aws_ec2_client_vpn_authorization_rule.tf │ │ ├── aws_ec2_client_vpn_endpoint.tf │ │ ├── aws_ec2_client_vpn_network_association.tf │ │ ├── aws_ec2_client_vpn_route.tf │ │ ├── aws_ec2_default_credit_specification.tf │ │ ├── aws_ec2_fleet.tf │ │ ├── aws_ec2_host.tf │ │ ├── aws_ec2_image_block_public_access.tf │ │ ├── aws_ec2_instance_connect_endpoint.tf │ │ ├── aws_ec2_instance_metadata_defaults.tf │ │ ├── aws_ec2_instance_state.tf │ │ ├── aws_ec2_local_gateway_route.tf │ │ ├── aws_ec2_local_gateway_route_table_vpc_association.tf │ │ ├── aws_ec2_managed_prefix_list.tf │ │ ├── aws_ec2_managed_prefix_list_entry.tf │ │ ├── aws_ec2_network_insights_analysis.tf │ │ ├── aws_ec2_serial_console_access.tf │ │ ├── aws_ec2_subnet_cidr_reservation.tf │ │ ├── aws_ec2_tag.tf │ │ ├── aws_ec2_traffic_mirror_filter.tf │ │ ├── aws_ec2_traffic_mirror_filter_rule.tf │ │ ├── aws_ec2_traffic_mirror_session.tf │ │ ├── aws_ec2_traffic_mirror_target.tf │ │ ├── aws_ec2_transit_gateway.tf │ │ ├── aws_ec2_transit_gateway_connect.tf │ │ ├── aws_ec2_transit_gateway_connect_peer.tf │ │ ├── aws_ec2_transit_gateway_default_route_table_association.tf │ │ ├── aws_ec2_transit_gateway_default_route_table_propagation.tf │ │ ├── aws_ec2_transit_gateway_multicast_domain.tf │ │ ├── aws_ec2_transit_gateway_multicast_domain_association.tf │ │ ├── aws_ec2_transit_gateway_multicast_group_member.tf │ │ ├── aws_ec2_transit_gateway_multicast_group_source.tf │ │ ├── aws_ec2_transit_gateway_peering_attachment.tf │ │ ├── aws_ec2_transit_gateway_peering_attachment_accepter.tf │ │ ├── aws_ec2_transit_gateway_policy_table.tf │ │ ├── aws_ec2_transit_gateway_policy_table_association.tf │ │ ├── aws_ec2_transit_gateway_prefix_list_reference.tf │ │ ├── aws_ec2_transit_gateway_route.tf │ │ ├── aws_ec2_transit_gateway_route_table.tf │ │ ├── aws_ec2_transit_gateway_route_table_association.tf │ │ ├── aws_ec2_transit_gateway_route_table_propagation.tf │ │ ├── aws_ec2_transit_gateway_vpc_attachment.tf │ │ ├── aws_ec2_transit_gateway_vpc_attachment_accepter.tf │ │ ├── aws_ecr_account_setting.tf │ │ ├── aws_ecr_lifecycle_policy.tf │ │ ├── aws_ecr_pull_through_cache_rule.tf │ │ ├── aws_ecr_registry_policy.tf │ │ ├── aws_ecr_registry_scanning_configuration.tf │ │ ├── aws_ecr_replication_configuration.tf │ │ ├── aws_ecr_repository.tf │ │ ├── aws_ecr_repository_creation_template.tf │ │ ├── aws_ecr_repository_policy.tf │ │ ├── aws_ecrpublic_repository.tf │ │ ├── aws_ecrpublic_repository_policy.tf │ │ ├── aws_ecs_account_setting_default.tf │ │ ├── aws_ecs_capacity_provider.tf │ │ ├── aws_ecs_cluster.tf │ │ ├── aws_ecs_cluster_capacity_providers.tf │ │ ├── aws_ecs_service.tf │ │ ├── aws_ecs_tag.tf │ │ ├── aws_ecs_task_definition.tf │ │ ├── aws_ecs_task_set.tf │ │ ├── aws_efs_access_point.tf │ │ ├── aws_efs_backup_policy.tf │ │ ├── aws_efs_file_system.tf │ │ ├── aws_efs_file_system_policy.tf │ │ ├── aws_efs_mount_target.tf │ │ ├── aws_efs_replication_configuration.tf │ │ ├── aws_egress_only_internet_gateway.tf │ │ ├── aws_eip.tf │ │ ├── aws_eip_association.tf │ │ ├── aws_eip_domain_name.tf │ │ ├── aws_eks_access_entry.tf │ │ ├── aws_eks_access_policy_association.tf │ │ ├── aws_eks_addon.tf │ │ ├── aws_eks_cluster.tf │ │ ├── aws_eks_fargate_profile.tf │ │ ├── aws_eks_identity_provider_config.tf │ │ ├── aws_eks_node_group.tf │ │ ├── aws_eks_pod_identity_association.tf │ │ ├── aws_elastic_beanstalk_application.tf │ │ ├── aws_elasticache_cluster.tf │ │ ├── aws_elasticache_global_replication_group.tf │ │ ├── aws_elasticache_parameter_group.tf │ │ ├── aws_elasticache_replication_group.tf │ │ ├── aws_elasticache_reserved_cache_node.tf │ │ ├── aws_elasticache_serverless_cache.tf │ │ ├── aws_elasticache_subnet_group.tf │ │ ├── aws_elasticache_user.tf │ │ ├── aws_elasticache_user_group.tf │ │ ├── aws_elasticache_user_group_association.tf │ │ ├── aws_elasticsearch_domain.tf │ │ ├── aws_elasticsearch_domain_policy.tf │ │ ├── aws_elasticsearch_domain_saml_options.tf │ │ ├── aws_elasticsearch_vpc_endpoint.tf │ │ ├── aws_elastictranscoder_pipeline.tf │ │ ├── aws_elastictranscoder_preset.tf │ │ ├── aws_elb.tf │ │ ├── aws_elb_attachment.tf │ │ ├── aws_emr_block_public_access_configuration.tf │ │ ├── aws_emr_cluster.tf │ │ ├── aws_emr_instance_fleet.tf │ │ ├── aws_emr_instance_group.tf │ │ ├── aws_emr_managed_scaling_policy.tf │ │ ├── aws_emr_security_configuration.tf │ │ ├── aws_emr_studio.tf │ │ ├── aws_emr_studio_session_mapping.tf │ │ ├── aws_emr_supported_instance_types.tf │ │ ├── aws_emrcontainers_job_template.tf │ │ ├── aws_emrcontainers_virtual_cluster.tf │ │ ├── aws_emrserverless_application.tf │ │ ├── aws_evidently_feature.tf │ │ ├── aws_evidently_launch.tf │ │ ├── aws_evidently_project.tf │ │ ├── aws_evidently_segment.tf │ │ ├── aws_finspace_kx_cluster.tf │ │ ├── aws_finspace_kx_database.tf │ │ ├── aws_finspace_kx_dataview.tf │ │ ├── aws_finspace_kx_environment.tf │ │ ├── aws_finspace_kx_scaling_group.tf │ │ ├── aws_finspace_kx_user.tf │ │ ├── aws_finspace_kx_volume.tf │ │ ├── aws_fis_experiment_template.tf │ │ ├── aws_flow_log.tf │ │ ├── aws_fms_admin_account.tf │ │ ├── aws_fms_policy.tf │ │ ├── aws_fms_resource_set.tf │ │ ├── aws_fsx_backup.tf │ │ ├── aws_fsx_data_repository_association.tf │ │ ├── aws_fsx_file_cache.tf │ │ ├── aws_fsx_lustre_file_system.tf │ │ ├── aws_fsx_ontap_file_system.tf │ │ ├── aws_fsx_ontap_storage_virtual_machine.tf │ │ ├── aws_fsx_ontap_volume.tf │ │ ├── aws_fsx_openzfs_file_system.tf │ │ ├── aws_fsx_openzfs_snapshot.tf │ │ ├── aws_fsx_openzfs_volume.tf │ │ ├── aws_fsx_windows_file_system.tf │ │ ├── aws_gamelift_alias.tf │ │ ├── aws_gamelift_build.tf │ │ ├── aws_gamelift_fleet.tf │ │ ├── aws_gamelift_game_server_group.tf │ │ ├── aws_gamelift_game_session_queue.tf │ │ ├── aws_gamelift_script.tf │ │ ├── aws_glacier_vault.tf │ │ ├── aws_glacier_vault_lock.tf │ │ ├── aws_globalaccelerator_accelerator.tf │ │ ├── aws_globalaccelerator_cross_account_attachment.tf │ │ ├── aws_globalaccelerator_custom_routing_accelerator.tf │ │ ├── aws_globalaccelerator_custom_routing_endpoint_group.tf │ │ ├── aws_globalaccelerator_custom_routing_listener.tf │ │ ├── aws_globalaccelerator_endpoint_group.tf │ │ ├── aws_globalaccelerator_listener.tf │ │ ├── aws_glue_catalog_database.tf │ │ ├── aws_glue_catalog_table.tf │ │ ├── aws_glue_catalog_table_optimizer.tf │ │ ├── aws_glue_classifier.tf │ │ ├── aws_glue_connection.tf │ │ ├── aws_glue_crawler.tf │ │ ├── aws_glue_data_catalog_encryption_settings.tf │ │ ├── aws_glue_data_quality_ruleset.tf │ │ ├── aws_glue_dev_endpoint.tf │ │ ├── aws_glue_job.tf │ │ ├── aws_glue_ml_transform.tf │ │ ├── aws_glue_partition.tf │ │ ├── aws_glue_partition_index.tf │ │ ├── aws_glue_registry.tf │ │ ├── aws_glue_resource_policy.tf │ │ ├── aws_glue_schema.tf │ │ ├── aws_glue_security_configuration.tf │ │ ├── aws_glue_trigger.tf │ │ ├── aws_glue_user_defined_function.tf │ │ ├── aws_glue_workflow.tf │ │ ├── aws_grafana_license_association.tf │ │ ├── aws_grafana_role_association.tf │ │ ├── aws_grafana_workspace.tf │ │ ├── aws_grafana_workspace_api_key.tf │ │ ├── aws_grafana_workspace_saml_configuration.tf │ │ ├── aws_grafana_workspace_service_account.tf │ │ ├── aws_grafana_workspace_service_account_token.tf │ │ ├── aws_guardduty_detector.tf │ │ ├── aws_guardduty_detector_feature.tf │ │ ├── aws_guardduty_filter.tf │ │ ├── aws_guardduty_invite_accepter.tf │ │ ├── aws_guardduty_ipset.tf │ │ ├── aws_guardduty_malware_protection_plan.tf │ │ ├── aws_guardduty_member.tf │ │ ├── aws_guardduty_member_detector_feature.tf │ │ ├── aws_guardduty_organization_admin_account.tf │ │ ├── aws_guardduty_organization_configuration.tf │ │ ├── aws_guardduty_organization_configuration_feature.tf │ │ ├── aws_guardduty_publishing_destination.tf │ │ ├── aws_guardduty_threatintelset.tf │ │ ├── aws_iam_access_key.tf │ │ ├── aws_iam_account_alias.tf │ │ ├── aws_iam_account_password_policy.tf │ │ ├── aws_iam_group.tf │ │ ├── aws_iam_group_membership.tf │ │ ├── aws_iam_group_policies_exclusive.tf │ │ ├── aws_iam_group_policy.tf │ │ ├── aws_iam_group_policy_attachment.tf │ │ ├── aws_iam_group_policy_attachments_exclusive.tf │ │ ├── aws_iam_instance_profile.tf │ │ ├── aws_iam_openid_connect_provider.tf │ │ ├── aws_iam_organizations_features.tf │ │ ├── aws_iam_policy.tf │ │ ├── aws_iam_policy_attachment.tf │ │ ├── aws_iam_role.test.tf │ │ ├── aws_iam_role_policies_exclusive.tf │ │ ├── aws_iam_role_policy.tf │ │ ├── aws_iam_role_policy_attachment.tf │ │ ├── aws_iam_role_policy_attachments_exclusive.tf │ │ ├── aws_iam_saml_provider.tf │ │ ├── aws_iam_security_token_service_preferences.tf │ │ ├── aws_iam_server_certificate.tf │ │ ├── aws_iam_service_linked_role.tf │ │ ├── aws_iam_service_specific_credential.tf │ │ ├── aws_iam_signing_certificate.tf │ │ ├── aws_iam_user.tf │ │ ├── aws_iam_user_group_membership.tf │ │ ├── aws_iam_user_login_profile.tf │ │ ├── aws_iam_user_policies_exclusive.tf │ │ ├── aws_iam_user_policy.tf │ │ ├── aws_iam_user_policy_attachment.tf │ │ ├── aws_iam_user_policy_attachments_exclusive.tf │ │ ├── aws_iam_user_ssh_key.tf │ │ ├── aws_iam_virtual_mfa_device.tf │ │ ├── aws_identitystore_group.tf │ │ ├── aws_identitystore_group_membership.tf │ │ ├── aws_imagebuilder_component.tf │ │ ├── aws_imagebuilder_container_recipe.tf │ │ ├── aws_imagebuilder_distribution_configuration.tf │ │ ├── aws_imagebuilder_image.tf │ │ ├── aws_imagebuilder_image_pipeline.tf │ │ ├── aws_imagebuilder_image_recipe.tf │ │ ├── aws_imagebuilder_infrastructure_configuration.tf │ │ ├── aws_imagebuilder_lifecycle_policy.tf │ │ ├── aws_imagebuilder_workflow.tf │ │ ├── aws_inspector2_delegated_admin_account.tf │ │ ├── aws_inspector2_enabler.tf │ │ ├── aws_inspector2_filter.tf │ │ ├── aws_inspector2_member_association.tf │ │ ├── aws_inspector2_organization_configuration.tf │ │ ├── aws_inspector_assessment_target.tf │ │ ├── aws_inspector_assessment_template.tf │ │ ├── aws_inspector_resource_group.tf │ │ ├── aws_instance.a.tf │ │ ├── aws_internet_gateway.tf │ │ ├── aws_internet_gateway_attachment.tf │ │ ├── aws_internetmonitor_monitor.tf │ │ ├── aws_iot_authorizer.tf │ │ ├── aws_iot_billing_group.tf │ │ ├── aws_iot_ca_certificate.tf │ │ ├── aws_iot_certificate.tf │ │ ├── aws_iot_domain_configuration.tf │ │ ├── aws_iot_event_configurations.tf │ │ ├── aws_iot_indexing_configuration.tf │ │ ├── aws_iot_logging_options.tf │ │ ├── aws_iot_policy.tf │ │ ├── aws_iot_policy_attachment.tf │ │ ├── aws_iot_provisioning_template.tf │ │ ├── aws_iot_role_alias.tf │ │ ├── aws_iot_thing.tf │ │ ├── aws_iot_thing_group.tf │ │ ├── aws_iot_thing_group_membership.tf │ │ ├── aws_iot_thing_principal_attachment.tf │ │ ├── aws_iot_thing_type.tf │ │ ├── aws_iot_topic_rule.tf │ │ ├── aws_iot_topic_rule_destination.tf │ │ ├── aws_ivs_channel.tf │ │ ├── aws_ivs_playback_key_pair.tf │ │ ├── aws_ivs_recording_configuration.tf │ │ ├── aws_ivschat_logging_configuration.tf │ │ ├── aws_ivschat_room.tf │ │ ├── aws_kendra_data_source.tf │ │ ├── aws_kendra_experience.tf │ │ ├── aws_kendra_faq.tf │ │ ├── aws_kendra_index.tf │ │ ├── aws_kendra_query_suggestions_block_list.tf │ │ ├── aws_kendra_thesaurus.tf │ │ ├── aws_key_pair.tf │ │ ├── aws_keyspaces_keyspace.tf │ │ ├── aws_keyspaces_table.tf │ │ ├── aws_kinesis_analytics_application.tf │ │ ├── aws_kinesis_firehose_delivery_stream.tf │ │ ├── aws_kinesis_resource_policy.tf │ │ ├── aws_kinesis_stream.tf │ │ ├── aws_kinesis_video_stream.tf │ │ ├── aws_kinesisanalyticsv2_application.tf │ │ ├── aws_kinesisanalyticsv2_application_snapshot.tf │ │ ├── aws_kms_alias.tf │ │ ├── aws_kms_ciphertext.tf │ │ ├── aws_kms_custom_key_store.tf │ │ ├── aws_kms_external_key.tf │ │ ├── aws_kms_grant.tf │ │ ├── aws_kms_key.example.tf │ │ ├── aws_kms_key_policy.tf │ │ ├── aws_kms_replica_external_key.tf │ │ ├── aws_kms_replica_key.tf │ │ ├── aws_lakeformation_data_cells_filter.tf │ │ ├── aws_lakeformation_data_lake_settings.tf │ │ ├── aws_lakeformation_lf_tag.tf │ │ ├── aws_lakeformation_opt_in.tf │ │ ├── aws_lakeformation_permissions.tf │ │ ├── aws_lakeformation_resource.tf │ │ ├── aws_lakeformation_resource_lf_tag.tf │ │ ├── aws_lakeformation_resource_lf_tags.tf │ │ ├── aws_lambda_code_signing_config.tf │ │ ├── aws_lambda_event_source_mapping.tf │ │ ├── aws_lambda_function.tf │ │ ├── aws_lambda_function_event_invoke_config.tf │ │ ├── aws_lambda_function_recursion_config.tf │ │ ├── aws_lambda_function_url.tf │ │ ├── aws_lambda_invocation.tf │ │ ├── aws_lambda_layer_version.tf │ │ ├── aws_lambda_layer_version_permission.tf │ │ ├── aws_lambda_permission.tf │ │ ├── aws_lambda_provisioned_concurrency_config.tf │ │ ├── aws_lambda_runtime_management_config.tf │ │ ├── aws_launch_configuration.tf │ │ ├── aws_launch_template.tf │ │ ├── aws_lb.tf │ │ ├── aws_lb_cookie_stickiness_policy.tf │ │ ├── aws_lb_listener.tf │ │ ├── aws_lb_listener_certificate.tf │ │ ├── aws_lb_listener_rule.tf │ │ ├── aws_lb_ssl_negotiation_policy.tf │ │ ├── aws_lb_target_group.tf │ │ ├── aws_lb_target_group_attachment.tf │ │ ├── aws_lb_trust_store.tf │ │ ├── aws_lb_trust_store_revocation.tf │ │ ├── aws_lex_bot.tf │ │ ├── aws_lex_bot_alias.tf │ │ ├── aws_lex_intent.tf │ │ ├── aws_lex_slot_type.tf │ │ ├── aws_lexv2models_bot.tf │ │ ├── aws_lexv2models_bot_locale.tf │ │ ├── aws_lexv2models_bot_version.tf │ │ ├── aws_lexv2models_intent.tf │ │ ├── aws_lexv2models_slot.tf │ │ ├── aws_lexv2models_slot_type.tf │ │ ├── aws_licensemanager_association.tf │ │ ├── aws_licensemanager_grant.tf │ │ ├── aws_licensemanager_grant_accepter.tf │ │ ├── aws_licensemanager_license_configuration.tf │ │ ├── aws_lightsail_bucket.tf │ │ ├── aws_lightsail_bucket_access_key.tf │ │ ├── aws_lightsail_bucket_access_key_access_key.tf │ │ ├── aws_lightsail_bucket_resource_access.tf │ │ ├── aws_lightsail_certificate.tf │ │ ├── aws_lightsail_container_service.tf │ │ ├── aws_lightsail_container_service_deployment_version.tf │ │ ├── aws_lightsail_database.tf │ │ ├── aws_lightsail_disk.tf │ │ ├── aws_lightsail_disk_attachment.tf │ │ ├── aws_lightsail_distribution.tf │ │ ├── aws_lightsail_domain.tf │ │ ├── aws_lightsail_domain_entry.tf │ │ ├── aws_lightsail_instance.tf │ │ ├── aws_lightsail_instance_public_ports.tf │ │ ├── aws_lightsail_key_pair.tf │ │ ├── aws_lightsail_lb.tf │ │ ├── aws_lightsail_lb_attachment.tf │ │ ├── aws_lightsail_lb_certificate.tf │ │ ├── aws_lightsail_lb_certificate_attachment.tf │ │ ├── aws_lightsail_lb_https_redirection_policy.tf │ │ ├── aws_lightsail_lb_stickiness_policy.tf │ │ ├── aws_lightsail_static_ip.tf │ │ ├── aws_lightsail_static_ip_attachment.tf │ │ ├── aws_load_balancer_backend_server_policy.tf │ │ ├── aws_load_balancer_listener_policy.tf │ │ ├── aws_load_balancer_policy.tf │ │ ├── aws_location_geofence_collection.tf │ │ ├── aws_location_map.tf │ │ ├── aws_location_place_index.tf │ │ ├── aws_location_route_calculator.tf │ │ ├── aws_location_tracker.tf │ │ ├── aws_location_tracker_association.tf │ │ ├── aws_m2_application.tf │ │ ├── aws_m2_deployment.tf │ │ ├── aws_m2_environment.tf │ │ ├── aws_macie2_account.tf │ │ ├── aws_macie2_classification_export_configuration.tf │ │ ├── aws_macie2_classification_job.tf │ │ ├── aws_macie2_custom_data_identifier.tf │ │ ├── aws_macie2_findings_filter.tf │ │ ├── aws_macie2_invitation_accepter.tf │ │ ├── aws_macie2_member.tf │ │ ├── aws_macie2_organization_admin_account.tf │ │ ├── aws_macie2_organization_configuration.tf │ │ ├── aws_main_route_table_association.tf │ │ ├── aws_media_convert_queue.tf │ │ ├── aws_media_package_channel.tf │ │ ├── aws_media_packagev2_channel_group.tf │ │ ├── aws_media_store_container.tf │ │ ├── aws_media_store_container_policy.tf │ │ ├── aws_medialive_channel.tf │ │ ├── aws_medialive_input.tf │ │ ├── aws_medialive_input_security_group.tf │ │ ├── aws_medialive_multiplex.tf │ │ ├── aws_medialive_multiplex_program.tf │ │ ├── aws_memorydb_acl.tf │ │ ├── aws_memorydb_cluster.tf │ │ ├── aws_memorydb_multi_region_cluster.tf │ │ ├── aws_memorydb_parameter_group.tf │ │ ├── aws_memorydb_snapshot.tf │ │ ├── aws_memorydb_subnet_group.tf │ │ ├── aws_memorydb_user.tf │ │ ├── aws_mq_broker.test.tf │ │ ├── aws_mq_configuration.broker.tf │ │ ├── aws_msk_cluster.tf │ │ ├── aws_msk_cluster_policy.tf │ │ ├── aws_msk_configuration.tf │ │ ├── aws_msk_replicator.tf │ │ ├── aws_msk_scram_secret_association.tf │ │ ├── aws_msk_serverless_cluster.tf │ │ ├── aws_msk_single_scram_secret_association.tf │ │ ├── aws_msk_vpc_connection.tf │ │ ├── aws_mskconnect_connector.tf │ │ ├── aws_mskconnect_custom_plugin.tf │ │ ├── aws_mskconnect_worker_configuration.tf │ │ ├── aws_mwaa_environment.tf │ │ ├── aws_nat_gateway.tf │ │ ├── aws_neptune_cluster.tf │ │ ├── aws_neptune_cluster_endpoint.tf │ │ ├── aws_neptune_cluster_instance.tf │ │ ├── aws_neptune_cluster_parameter_group.tf │ │ ├── aws_neptune_cluster_snapshot.tf │ │ ├── aws_neptune_event_subscription.tf │ │ ├── aws_neptune_global_cluster.tf │ │ ├── aws_neptune_parameter_group.tf │ │ ├── aws_neptune_subnet_group.tf │ │ ├── aws_neptunegraph_graph.tf │ │ ├── aws_network_acl.tf │ │ ├── aws_network_acl_association.tf │ │ ├── aws_network_acl_rule.tf │ │ ├── aws_network_interface.tf │ │ ├── aws_network_interface_attachment.tf │ │ ├── aws_network_interface_permission.tf │ │ ├── aws_network_interface_sg_attachment.tf │ │ ├── aws_networkfirewall_firewall.tf │ │ ├── aws_networkfirewall_firewall_policy.tf │ │ ├── aws_networkfirewall_logging_configuration.tf │ │ ├── aws_networkfirewall_resource_policy.tf │ │ ├── aws_networkfirewall_rule_group.tf │ │ ├── aws_networkfirewall_tls_inspection_configuration.tf │ │ ├── aws_networkmanager_attachment_accepter.tf │ │ ├── aws_networkmanager_connect_attachment.tf │ │ ├── aws_networkmanager_connect_peer.tf │ │ ├── aws_networkmanager_connection.tf │ │ ├── aws_networkmanager_core_network.tf │ │ ├── aws_networkmanager_core_network_policy_attachment.tf │ │ ├── aws_networkmanager_customer_gateway_association.tf │ │ ├── aws_networkmanager_device.tf │ │ ├── aws_networkmanager_dx_gateway_attachment.tf │ │ ├── aws_networkmanager_global_network.tf │ │ ├── aws_networkmanager_link.tf │ │ ├── aws_networkmanager_link_association.tf │ │ ├── aws_networkmanager_site.tf │ │ ├── aws_networkmanager_site_to_site_vpn_attachment.tf │ │ ├── aws_networkmanager_transit_gateway_connect_peer_association.tf │ │ ├── aws_networkmanager_transit_gateway_peering.tf │ │ ├── aws_networkmanager_transit_gateway_registration.tf │ │ ├── aws_networkmanager_transit_gateway_route_table_attachment.tf │ │ ├── aws_networkmanager_vpc_attachment.tf │ │ ├── aws_networkmonitor_monitor.tf │ │ ├── aws_networkmonitor_probe.tf │ │ ├── aws_notifications_channel_association.tf │ │ ├── aws_notifications_event_rule.tf │ │ ├── aws_notifications_notification_configuration.tf │ │ ├── aws_notifications_notification_hub.tf │ │ ├── aws_notificationscontacts_email_contact.tf │ │ ├── aws_oam_link.tf │ │ ├── aws_oam_sink.tf │ │ ├── aws_oam_sink_policy.tf │ │ ├── aws_opensearch_authorize_vpc_endpoint_access.tf │ │ ├── aws_opensearch_domain_saml_options.tf │ │ ├── aws_opensearch_inbound_connection_accepter.tf │ │ ├── aws_opensearch_outbound_connection.tf │ │ ├── aws_opensearch_package.tf │ │ ├── aws_opensearch_package_association.tf │ │ ├── aws_opensearch_vpc_endpoint.tf │ │ ├── aws_opensearchserverless_access_policy.tf │ │ ├── aws_opensearchserverless_collection.tf │ │ ├── aws_opensearchserverless_lifecycle_policy.tf │ │ ├── aws_opensearchserverless_security_config.tf │ │ ├── aws_opensearchserverless_security_policy.tf │ │ ├── aws_opensearchserverless_vpc_endpoint.tf │ │ ├── aws_opsworks_application.tf │ │ ├── aws_opsworks_custom_layer.tf │ │ ├── aws_opsworks_ecs_cluster_layer.tf │ │ ├── aws_opsworks_ganglia_layer.tf │ │ ├── aws_opsworks_haproxy_layer.tf │ │ ├── aws_opsworks_instance.tf │ │ ├── aws_opsworks_java_app_layer.tf │ │ ├── aws_opsworks_memcached_layer.tf │ │ ├── aws_opsworks_mysql_layer.tf │ │ ├── aws_opsworks_nodejs_app_layer.tf │ │ ├── aws_opsworks_permission.tf │ │ ├── aws_opsworks_php_app_layer.tf │ │ ├── aws_opsworks_rails_app_layer.tf │ │ ├── aws_opsworks_rds_db_instance.tf │ │ ├── aws_opsworks_stack.tf │ │ ├── aws_opsworks_static_web_layer.tf │ │ ├── aws_opsworks_user_profile.tf │ │ ├── aws_organizations_account.tf │ │ ├── aws_organizations_delegated_administrator.tf │ │ ├── aws_organizations_organization.tf │ │ ├── aws_organizations_organizational_unit.tf │ │ ├── aws_organizations_policy.tf │ │ ├── aws_organizations_policy_attachment.tf │ │ ├── aws_organizations_resource_policy.tf │ │ ├── aws_osis_pipeline.tf │ │ ├── aws_paymentcryptography_key.tf │ │ ├── aws_paymentcryptography_key_alias.tf │ │ ├── aws_pinpoint_adm_channel.tf │ │ ├── aws_pinpoint_apns_channel.tf │ │ ├── aws_pinpoint_apns_sandbox_channel.tf │ │ ├── aws_pinpoint_apns_voip_channel.tf │ │ ├── aws_pinpoint_apns_voip_sandbox_channel.tf │ │ ├── aws_pinpoint_app.tf │ │ ├── aws_pinpoint_baidu_channel.tf │ │ ├── aws_pinpoint_email_channel.tf │ │ ├── aws_pinpoint_email_template.tf │ │ ├── aws_pinpoint_event_stream.tf │ │ ├── aws_pinpoint_gcm_channel.tf │ │ ├── aws_pinpoint_sms_channel.tf │ │ ├── aws_pinpointsmsvoicev2_configuration_set.tf │ │ ├── aws_pinpointsmsvoicev2_opt_out_list.tf │ │ ├── aws_pinpointsmsvoicev2_phone_number.tf │ │ ├── aws_pipes_pipe.tf │ │ ├── aws_placement_group.tf │ │ ├── aws_prometheus_alert_manager_definition.tf │ │ ├── aws_prometheus_rule_group_namespace.tf │ │ ├── aws_prometheus_scraper.tf │ │ ├── aws_prometheus_workspace.tf │ │ ├── aws_prometheus_workspace_configuration.tf │ │ ├── aws_proxy_protocol_policy.tf │ │ ├── aws_qbusiness_application.tf │ │ ├── aws_qldb_ledger.tf │ │ ├── aws_qldb_stream.tf │ │ ├── aws_quicksight_account_settings.tf │ │ ├── aws_quicksight_account_subscription.tf │ │ ├── aws_quicksight_analysis.tf │ │ ├── aws_quicksight_dashboard.tf │ │ ├── aws_quicksight_data_set.tf │ │ ├── aws_quicksight_data_source.tf │ │ ├── aws_quicksight_folder.tf │ │ ├── aws_quicksight_folder_membership.tf │ │ ├── aws_quicksight_group.tf │ │ ├── aws_quicksight_group_membership.tf │ │ ├── aws_quicksight_iam_policy_assignment.tf │ │ ├── aws_quicksight_ingestion.tf │ │ ├── aws_quicksight_namespace.tf │ │ ├── aws_quicksight_refresh_schedule.tf │ │ ├── aws_quicksight_role_membership.tf │ │ ├── aws_quicksight_template.tf │ │ ├── aws_quicksight_template_alias.tf │ │ ├── aws_quicksight_theme.tf │ │ ├── aws_quicksight_user.tf │ │ ├── aws_quicksight_vpc_connection.tf │ │ ├── aws_ram_principal_association.tf │ │ ├── aws_ram_resource_association.tf │ │ ├── aws_ram_resource_share.tf │ │ ├── aws_ram_resource_share_accepter.tf │ │ ├── aws_ram_sharing_with_organization.tf │ │ ├── aws_rbin_rule.tf │ │ ├── aws_rds_certificate.tf │ │ ├── aws_rds_cluster.tf │ │ ├── aws_rds_cluster_activity_stream.tf │ │ ├── aws_rds_cluster_endpoint.tf │ │ ├── aws_rds_cluster_instance.tf │ │ ├── aws_rds_cluster_parameter_group.tf │ │ ├── aws_rds_cluster_role_association.tf │ │ ├── aws_rds_cluster_snapshot_copy.tf │ │ ├── aws_rds_custom_db_engine_version.tf │ │ ├── aws_rds_export_task.tf │ │ ├── aws_rds_global_cluster.tf │ │ ├── aws_rds_instance_state.tf │ │ ├── aws_rds_integration.tf │ │ ├── aws_rds_reserved_instance.tf │ │ ├── aws_rds_shard_group.tf │ │ ├── aws_redshift_authentication_profile.tf │ │ ├── aws_redshift_cluster.tf │ │ ├── aws_redshift_cluster_iam_roles.tf │ │ ├── aws_redshift_cluster_snapshot.tf │ │ ├── aws_redshift_data_share_authorization.tf │ │ ├── aws_redshift_data_share_consumer_association.tf │ │ ├── aws_redshift_endpoint_access.tf │ │ ├── aws_redshift_endpoint_authorization.tf │ │ ├── aws_redshift_event_subscription.tf │ │ ├── aws_redshift_hsm_client_certificate.tf │ │ ├── aws_redshift_hsm_configuration.tf │ │ ├── aws_redshift_integration.tf │ │ ├── aws_redshift_logging.tf │ │ ├── aws_redshift_parameter_group.tf │ │ ├── aws_redshift_partner.tf │ │ ├── aws_redshift_resource_policy.tf │ │ ├── aws_redshift_scheduled_action.tf │ │ ├── aws_redshift_snapshot_copy.tf │ │ ├── aws_redshift_snapshot_copy_grant.tf │ │ ├── aws_redshift_snapshot_schedule.tf │ │ ├── aws_redshift_snapshot_schedule_association.tf │ │ ├── aws_redshift_subnet_group.tf │ │ ├── aws_redshift_usage_limit.tf │ │ ├── aws_redshiftdata_statement.tf │ │ ├── aws_redshiftserverless_custom_domain_association.tf │ │ ├── aws_redshiftserverless_endpoint_access.tf │ │ ├── aws_redshiftserverless_namespace.tf │ │ ├── aws_redshiftserverless_resource_policy.tf │ │ ├── aws_redshiftserverless_snapshot.tf │ │ ├── aws_redshiftserverless_usage_limit.tf │ │ ├── aws_redshiftserverless_workgroup.tf │ │ ├── aws_rekognition_collection.tf │ │ ├── aws_rekognition_project.tf │ │ ├── aws_rekognition_stream_processor.tf │ │ ├── aws_resiliencehub_resiliency_policy.tf │ │ ├── aws_resourceexplorer2_index.tf │ │ ├── aws_resourceexplorer2_view.tf │ │ ├── aws_resourcegroups_group.tf │ │ ├── aws_resourcegroups_resource.tf │ │ ├── aws_rolesanywhere_profile.tf │ │ ├── aws_rolesanywhere_trust_anchor.tf │ │ ├── aws_route.tf │ │ ├── aws_route53_cidr_collection.tf │ │ ├── aws_route53_cidr_location.tf │ │ ├── aws_route53_delegation_set.tf │ │ ├── aws_route53_health_check.tf │ │ ├── aws_route53_key_signing_key.tf │ │ ├── aws_route53_query_log.tf │ │ ├── aws_route53_record.tf │ │ ├── aws_route53_records_exclusive.tf │ │ ├── aws_route53_resolver_config.tf │ │ ├── aws_route53_resolver_dnssec_config.tf │ │ ├── aws_route53_resolver_endpoint.tf │ │ ├── aws_route53_resolver_firewall_config.tf │ │ ├── aws_route53_resolver_firewall_domain_list.tf │ │ ├── aws_route53_resolver_firewall_rule.tf │ │ ├── aws_route53_resolver_firewall_rule_group.tf │ │ ├── aws_route53_resolver_firewall_rule_group_association.tf │ │ ├── aws_route53_resolver_query_log_config.tf │ │ ├── aws_route53_resolver_query_log_config_association.tf │ │ ├── aws_route53_resolver_rule.tf │ │ ├── aws_route53_resolver_rule_association.tf │ │ ├── aws_route53_traffic_policy.tf │ │ ├── aws_route53_traffic_policy_instance.tf │ │ ├── aws_route53_vpc_association_authorization.tf │ │ ├── aws_route53_zone.tf │ │ ├── aws_route53_zone_association.tf │ │ ├── aws_route53domains_delegation_signer_record.tf │ │ ├── aws_route53domains_domain.tf │ │ ├── aws_route53domains_registered_domain.tf │ │ ├── aws_route53profiles_association.tf │ │ ├── aws_route53profiles_profile.tf │ │ ├── aws_route53profiles_resource_association.tf │ │ ├── aws_route53recoverycontrolconfig_cluster.tf │ │ ├── aws_route53recoverycontrolconfig_control_panel.tf │ │ ├── aws_route53recoverycontrolconfig_routing_control.tf │ │ ├── aws_route53recoverycontrolconfig_safety_rule.tf │ │ ├── aws_route53recoveryreadiness_cell.tf │ │ ├── aws_route53recoveryreadiness_readiness_check.tf │ │ ├── aws_route53recoveryreadiness_recovery_group.tf │ │ ├── aws_route53recoveryreadiness_resource_set.tf │ │ ├── aws_route_table.tf │ │ ├── aws_route_table_association.tf │ │ ├── aws_rum_app_monitor.tf │ │ ├── aws_rum_metrics_destination.tf │ │ ├── aws_s3_access_point.tf │ │ ├── aws_s3_account_public_access_block.tf │ │ ├── aws_s3_bucket.pail.tf │ │ ├── aws_s3_bucket_accelerate_configuration.tf │ │ ├── aws_s3_bucket_acl.tf │ │ ├── aws_s3_bucket_analytics_configuration.tf │ │ ├── aws_s3_bucket_cors_configuration.tf │ │ ├── aws_s3_bucket_intelligent_tiering_configuration.tf │ │ ├── aws_s3_bucket_inventory.tf │ │ ├── aws_s3_bucket_lifecycle_configuration.tf │ │ ├── aws_s3_bucket_logging.tf │ │ ├── aws_s3_bucket_metric.tf │ │ ├── aws_s3_bucket_notification.tf │ │ ├── aws_s3_bucket_object_lock_configuration.tf │ │ ├── aws_s3_bucket_ownership_controls.tf │ │ ├── aws_s3_bucket_policy.tf │ │ ├── aws_s3_bucket_public_access_block.tf │ │ ├── aws_s3_bucket_replication_configuration.tf │ │ ├── aws_s3_bucket_request_payment_configuration.tf │ │ ├── aws_s3_bucket_server_side_encryption_configuration.tf │ │ ├── aws_s3_bucket_versioning.tf │ │ ├── aws_s3_bucket_website_configuration.tf │ │ ├── aws_s3_directory_bucket.tf │ │ ├── aws_s3_object.tf │ │ ├── aws_s3_object_copy.tf │ │ ├── aws_s3control_access_grant.tf │ │ ├── aws_s3control_access_grants_instance.tf │ │ ├── aws_s3control_access_grants_instance_resource_policy.tf │ │ ├── aws_s3control_access_grants_location.tf │ │ ├── aws_s3control_access_point_policy.tf │ │ ├── aws_s3control_bucket.tf │ │ ├── aws_s3control_bucket_lifecycle_configuration.tf │ │ ├── aws_s3control_bucket_policy.tf │ │ ├── aws_s3control_multi_region_access_point.tf │ │ ├── aws_s3control_multi_region_access_point_policy.tf │ │ ├── aws_s3control_object_lambda_access_point.tf │ │ ├── aws_s3control_object_lambda_access_point_policy.tf │ │ ├── aws_s3control_storage_lens_configuration.tf │ │ ├── aws_s3outposts_endpoint.tf │ │ ├── aws_s3tables_namespace.tf │ │ ├── aws_s3tables_table.tf │ │ ├── aws_s3tables_table_bucket.tf │ │ ├── aws_s3tables_table_bucket_policy.tf │ │ ├── aws_s3tables_table_policy.tf │ │ ├── aws_sagemaker_app.tf │ │ ├── aws_sagemaker_app_image_config.tf │ │ ├── aws_sagemaker_code_repository.tf │ │ ├── aws_sagemaker_data_quality_job_definition.tf │ │ ├── aws_sagemaker_device.tf │ │ ├── aws_sagemaker_device_fleet.tf │ │ ├── aws_sagemaker_domain.tf │ │ ├── aws_sagemaker_endpoint.tf │ │ ├── aws_sagemaker_endpoint_configuration.tf │ │ ├── aws_sagemaker_feature_group.tf │ │ ├── aws_sagemaker_flow_definition.tf │ │ ├── aws_sagemaker_hub.tf │ │ ├── aws_sagemaker_human_task_ui.tf │ │ ├── aws_sagemaker_image.tf │ │ ├── aws_sagemaker_image_version.tf │ │ ├── aws_sagemaker_mlflow_tracking_server.tf │ │ ├── aws_sagemaker_model.tf │ │ ├── aws_sagemaker_model_package_group.tf │ │ ├── aws_sagemaker_model_package_group_policy.tf │ │ ├── aws_sagemaker_monitoring_schedule.tf │ │ ├── aws_sagemaker_notebook_instance.tf │ │ ├── aws_sagemaker_notebook_instance_lifecycle_configuration.tf │ │ ├── aws_sagemaker_pipeline.tf │ │ ├── aws_sagemaker_project.tf │ │ ├── aws_sagemaker_servicecatalog_portfolio_status.tf │ │ ├── aws_sagemaker_space.tf │ │ ├── aws_sagemaker_studio_lifecycle_config.tf │ │ ├── aws_sagemaker_user_profile.tf │ │ ├── aws_sagemaker_workforce.tf │ │ ├── aws_sagemaker_workteam.tf │ │ ├── aws_scheduler_schedule.tf │ │ ├── aws_scheduler_schedule_group.tf │ │ ├── aws_schemas_discoverer.tf │ │ ├── aws_schemas_registry.tf │ │ ├── aws_schemas_registry_policy.tf │ │ ├── aws_schemas_schema.tf │ │ ├── aws_secretsmanager_secret.tf │ │ ├── aws_secretsmanager_secret_policy.tf │ │ ├── aws_secretsmanager_secret_rotation.tf │ │ ├── aws_secretsmanager_secret_version.tf │ │ ├── aws_security_group.broker.tf │ │ ├── aws_security_group.tf │ │ ├── aws_security_group_rule.tf │ │ ├── aws_securityhub_account.tf │ │ ├── aws_securityhub_action_target.tf │ │ ├── aws_securityhub_automation_rule.tf │ │ ├── aws_securityhub_configuration_policy.tf │ │ ├── aws_securityhub_configuration_policy_association.tf │ │ ├── aws_securityhub_finding_aggregator.tf │ │ ├── aws_securityhub_insight.tf │ │ ├── aws_securityhub_invite_accepter.tf │ │ ├── aws_securityhub_member.tf │ │ ├── aws_securityhub_organization_admin_account.tf │ │ ├── aws_securityhub_organization_configuration.tf │ │ ├── aws_securityhub_product_subscription.tf │ │ ├── aws_securityhub_standards_control.tf │ │ ├── aws_securityhub_standards_control_association.tf │ │ ├── aws_securityhub_standards_subscription.tf │ │ ├── aws_securitylake_aws_log_source.tf │ │ ├── aws_securitylake_custom_log_source.tf │ │ ├── aws_securitylake_data_lake.tf │ │ ├── aws_securitylake_subscriber.tf │ │ ├── aws_securitylake_subscriber_notification.tf │ │ ├── aws_serverlessapplicationrepository_cloudformation_stack.tf │ │ ├── aws_service_discovery_http_namespace.tf │ │ ├── aws_service_discovery_instance.tf │ │ ├── aws_service_discovery_private_dns_namespace.tf │ │ ├── aws_service_discovery_public_dns_namespace.tf │ │ ├── aws_service_discovery_service.tf │ │ ├── aws_servicecatalog_budget_resource_association.tf │ │ ├── aws_servicecatalog_constraint.tf │ │ ├── aws_servicecatalog_organizations_access.tf │ │ ├── aws_servicecatalog_portfolio.tf │ │ ├── aws_servicecatalog_portfolio_share.tf │ │ ├── aws_servicecatalog_principal_portfolio_association.tf │ │ ├── aws_servicecatalog_product.tf │ │ ├── aws_servicecatalog_product_portfolio_association.tf │ │ ├── aws_servicecatalog_provisioned_product.tf │ │ ├── aws_servicecatalog_provisioning_artifact.tf │ │ ├── aws_servicecatalog_service_action.tf │ │ ├── aws_servicecatalog_tag_option.tf │ │ ├── aws_servicecatalog_tag_option_resource_association.tf │ │ ├── aws_servicecatalogappregistry_application.tf │ │ ├── aws_servicecatalogappregistry_attribute_group.tf │ │ ├── aws_servicecatalogappregistry_attribute_group_association.tf │ │ ├── aws_servicequotas_service_quota.tf │ │ ├── aws_servicequotas_template.tf │ │ ├── aws_servicequotas_template_association.tf │ │ ├── aws_ses_active_receipt_rule_set.tf │ │ ├── aws_ses_configuration_set.tf │ │ ├── aws_ses_domain_dkim.tf │ │ ├── aws_ses_domain_identity.tf │ │ ├── aws_ses_domain_identity_verification.tf │ │ ├── aws_ses_domain_mail_from.tf │ │ ├── aws_ses_email_identity.tf │ │ ├── aws_ses_event_destination.tf │ │ ├── aws_ses_identity_notification_topic.tf │ │ ├── aws_ses_identity_policy.tf │ │ ├── aws_ses_receipt_filter.tf │ │ ├── aws_ses_receipt_rule.tf │ │ ├── aws_ses_receipt_rule_set.tf │ │ ├── aws_ses_template.tf │ │ ├── aws_sesv2_account_suppression_attributes.tf │ │ ├── aws_sesv2_account_vdm_attributes.tf │ │ ├── aws_sesv2_configuration_set.tf │ │ ├── aws_sesv2_configuration_set_event_destination.tf │ │ ├── aws_sesv2_contact_list.tf │ │ ├── aws_sesv2_dedicated_ip_assignment.tf │ │ ├── aws_sesv2_dedicated_ip_pool.tf │ │ ├── aws_sesv2_email_identity.tf │ │ ├── aws_sesv2_email_identity_feedback_attributes.tf │ │ ├── aws_sesv2_email_identity_mail_from_attributes.tf │ │ ├── aws_sesv2_email_identity_policy.tf │ │ ├── aws_sfn_activity.tf │ │ ├── aws_sfn_alias.tf │ │ ├── aws_sfn_state_machine.tf │ │ ├── aws_shield_application_layer_automatic_response.tf │ │ ├── aws_shield_drt_access_log_bucket_association.tf │ │ ├── aws_shield_drt_access_role_arn_association.tf │ │ ├── aws_shield_proactive_engagement.tf │ │ ├── aws_shield_protection.tf │ │ ├── aws_shield_protection_group.tf │ │ ├── aws_shield_protection_health_check_association.tf │ │ ├── aws_shield_subscription.tf │ │ ├── aws_signer_signing_job.tf │ │ ├── aws_signer_signing_profile.tf │ │ ├── aws_signer_signing_profile_permission.tf │ │ ├── aws_simpledb_domain.tf │ │ ├── aws_snapshot_create_volume_permission.tf │ │ ├── aws_sns_platform_application.tf │ │ ├── aws_sns_sms_preferences.tf │ │ ├── aws_sns_topic.tf │ │ ├── aws_sns_topic_data_protection_policy.tf │ │ ├── aws_sns_topic_policy.tf │ │ ├── aws_sns_topic_subscription.tf │ │ ├── aws_spot_datafeed_subscription.tf │ │ ├── aws_spot_fleet_request.tf │ │ ├── aws_spot_instance_request.tf │ │ ├── aws_sqs_queue.tf │ │ ├── aws_sqs_queue_redrive_allow_policy.tf │ │ ├── aws_sqs_queue_redrive_policy.tf │ │ ├── aws_ssm_activation.tf │ │ ├── aws_ssm_association.tf │ │ ├── aws_ssm_default_patch_baseline.tf │ │ ├── aws_ssm_document.tf │ │ ├── aws_ssm_maintenance_window.tf │ │ ├── aws_ssm_maintenance_window_target.tf │ │ ├── aws_ssm_maintenance_window_task.tf │ │ ├── aws_ssm_parameter.tf │ │ ├── aws_ssm_patch_baseline.tf │ │ ├── aws_ssm_patch_group.tf │ │ ├── aws_ssm_resource_data_sync.tf │ │ ├── aws_ssm_service_setting.tf │ │ ├── aws_ssmcontacts_contact.tf │ │ ├── aws_ssmcontacts_contact_channel.tf │ │ ├── aws_ssmcontacts_plan.tf │ │ ├── aws_ssmcontacts_rotation.tf │ │ ├── aws_ssmincidents_replication_set.tf │ │ ├── aws_ssmincidents_response_plan.tf │ │ ├── aws_ssmquicksetup_configuration_manager.tf │ │ ├── aws_ssoadmin_account_assignment.tf │ │ ├── aws_ssoadmin_application.tf │ │ ├── aws_ssoadmin_application_access_scope.tf │ │ ├── aws_ssoadmin_application_assignment.tf │ │ ├── aws_ssoadmin_application_assignment_configuration.tf │ │ ├── aws_ssoadmin_customer_managed_policy_attachment.tf │ │ ├── aws_ssoadmin_instance_access_control_attributes.tf │ │ ├── aws_ssoadmin_managed_policy_attachment.tf │ │ ├── aws_ssoadmin_permission_set.tf │ │ ├── aws_ssoadmin_permission_set_inline_policy.tf │ │ ├── aws_ssoadmin_permissions_boundary_attachment.tf │ │ ├── aws_ssoadmin_trusted_token_issuer.tf │ │ ├── aws_storagegateway_cache.tf │ │ ├── aws_storagegateway_cached_iscsi_volume.tf │ │ ├── aws_storagegateway_file_system_association.tf │ │ ├── aws_storagegateway_gateway.tf │ │ ├── aws_storagegateway_nfs_file_share.tf │ │ ├── aws_storagegateway_smb_file_share.tf │ │ ├── aws_storagegateway_stored_iscsi_volume.tf │ │ ├── aws_storagegateway_tape_pool.tf │ │ ├── aws_storagegateway_upload_buffer.tf │ │ ├── aws_storagegateway_working_storage.tf │ │ ├── aws_subnet.tf │ │ ├── aws_swf_domain.tf │ │ ├── aws_synthetics_canary.tf │ │ ├── aws_synthetics_group.tf │ │ ├── aws_synthetics_group_association.tf │ │ ├── aws_timestreaminfluxdb_db_instance.tf │ │ ├── aws_timestreamquery_scheduled_query.tf │ │ ├── aws_timestreamwrite_database.tf │ │ ├── aws_timestreamwrite_table.tf │ │ ├── aws_transcribe_language_model.tf │ │ ├── aws_transcribe_medical_vocabulary.tf │ │ ├── aws_transcribe_vocabulary.tf │ │ ├── aws_transcribe_vocabulary_filter.tf │ │ ├── aws_transfer_access.tf │ │ ├── aws_transfer_agreement.tf │ │ ├── aws_transfer_certificate.tf │ │ ├── aws_transfer_connector.tf │ │ ├── aws_transfer_profile.tf │ │ ├── aws_transfer_server.tf │ │ ├── aws_transfer_ssh_key.tf │ │ ├── aws_transfer_tag.tf │ │ ├── aws_transfer_user.tf │ │ ├── aws_transfer_workflow.tf │ │ ├── aws_verifiedaccess_endpoint.tf │ │ ├── aws_verifiedaccess_group.tf │ │ ├── aws_verifiedaccess_instance.tf │ │ ├── aws_verifiedaccess_instance_logging_configuration.tf │ │ ├── aws_verifiedaccess_instance_trust_provider_attachment.tf │ │ ├── aws_verifiedaccess_trust_provider.tf │ │ ├── aws_verifiedpermissions_identity_source.tf │ │ ├── aws_verifiedpermissions_policy.tf │ │ ├── aws_verifiedpermissions_policy_store.tf │ │ ├── aws_verifiedpermissions_policy_template.tf │ │ ├── aws_verifiedpermissions_schema.tf │ │ ├── aws_volume_attachment.tf │ │ ├── aws_vpc.tf │ │ ├── aws_vpc_block_public_access_exclusion.tf │ │ ├── aws_vpc_block_public_access_options.tf │ │ ├── aws_vpc_dhcp_options.tf │ │ ├── aws_vpc_dhcp_options_association.tf │ │ ├── aws_vpc_endpoint.tf │ │ ├── aws_vpc_endpoint_connection_accepter.tf │ │ ├── aws_vpc_endpoint_connection_notification.tf │ │ ├── aws_vpc_endpoint_policy.tf │ │ ├── aws_vpc_endpoint_private_dns.tf │ │ ├── aws_vpc_endpoint_route_table_association.tf │ │ ├── aws_vpc_endpoint_security_group_association.tf │ │ ├── aws_vpc_endpoint_service.tf │ │ ├── aws_vpc_endpoint_service_allowed_principal.tf │ │ ├── aws_vpc_endpoint_service_private_dns_verification.tf │ │ ├── aws_vpc_endpoint_subnet_association .tf │ │ ├── aws_vpc_ipam.tf │ │ ├── aws_vpc_ipam_organization_admin_account.tf │ │ ├── aws_vpc_ipam_pool.tf │ │ ├── aws_vpc_ipam_pool_cidr.tf │ │ ├── aws_vpc_ipam_pool_cidr_allocation.tf │ │ ├── aws_vpc_ipam_preview_next_cidr.tf │ │ ├── aws_vpc_ipam_resource_discovery.tf │ │ ├── aws_vpc_ipam_resource_discovery_association.tf │ │ ├── aws_vpc_ipam_scope.tf │ │ ├── aws_vpc_ipv4_cidr_block_association.tf │ │ ├── aws_vpc_ipv6_cidr_block_association.tf │ │ ├── aws_vpc_network_performance_metric_subscription.tf │ │ ├── aws_vpc_peering_connection.tf │ │ ├── aws_vpc_peering_connection_accepter.tf │ │ ├── aws_vpc_peering_connection_options.tf │ │ ├── aws_vpc_route_server.tf │ │ ├── aws_vpc_route_server_association.tf │ │ ├── aws_vpc_route_server_endpoint.tf │ │ ├── aws_vpc_route_server_peer.tf │ │ ├── aws_vpc_route_server_propagation.tf │ │ ├── aws_vpc_route_server_vpc_association.tf │ │ ├── aws_vpc_security_group_egress_rule.tf │ │ ├── aws_vpc_security_group_ingress_rule.tf │ │ ├── aws_vpc_security_group_vpc_association.tf │ │ ├── aws_vpclattice_access_log_subscription.tf │ │ ├── aws_vpclattice_auth_policy.tf │ │ ├── aws_vpclattice_listener.tf │ │ ├── aws_vpclattice_listener_rule.tf │ │ ├── aws_vpclattice_resource_configuration.tf │ │ ├── aws_vpclattice_resource_gateway.tf │ │ ├── aws_vpclattice_resource_policy.tf │ │ ├── aws_vpclattice_service.tf │ │ ├── aws_vpclattice_service_network.tf │ │ ├── aws_vpclattice_service_network_resource_association.tf │ │ ├── aws_vpclattice_service_network_service_association.tf │ │ ├── aws_vpclattice_service_network_vpc_association.tf │ │ ├── aws_vpclattice_target_group.tf │ │ ├── aws_vpclattice_target_group_attachment.tf │ │ ├── aws_vpn_connection.tf │ │ ├── aws_vpn_connection_route.tf │ │ ├── aws_vpn_gateway.tf │ │ ├── aws_vpn_gateway_attachment.tf │ │ ├── aws_vpn_gateway_route_propagation.tf │ │ ├── aws_waf_byte_match_set.tf │ │ ├── aws_waf_geo_match_set.tf │ │ ├── aws_waf_ipset.tf │ │ ├── aws_waf_rate_based_rule.tf │ │ ├── aws_waf_regex_match_set.tf │ │ ├── aws_waf_regex_pattern_set.tf │ │ ├── aws_waf_rule.tf │ │ ├── aws_waf_rule_group.tf │ │ ├── aws_waf_size_constraint_set.tf │ │ ├── aws_waf_sql_injection_match_set.tf │ │ ├── aws_waf_web_acl.tf │ │ ├── aws_waf_xss_match_set.tf │ │ ├── aws_wafregional_byte_match_set.tf │ │ ├── aws_wafregional_geo_match_set.tf │ │ ├── aws_wafregional_ipset.tf │ │ ├── aws_wafregional_rate_based_rule.tf │ │ ├── aws_wafregional_regex_match_set.tf │ │ ├── aws_wafregional_regex_pattern_set.tf │ │ ├── aws_wafregional_rule.tf │ │ ├── aws_wafregional_rule_group.tf │ │ ├── aws_wafregional_size_constraint_set.tf │ │ ├── aws_wafregional_sql_injection_match_set.tf │ │ ├── aws_wafregional_web_acl.tf │ │ ├── aws_wafregional_web_acl_association.tf │ │ ├── aws_wafregional_xss_match_set.tf │ │ ├── aws_wafv2_api_key.tf │ │ ├── aws_wafv2_ip_set.tf │ │ ├── aws_wafv2_regex_pattern_set.tf │ │ ├── aws_wafv2_rule_group.tf │ │ ├── aws_wafv2_web_acl.tf │ │ ├── aws_wafv2_web_acl_association.tf │ │ ├── aws_wafv2_web_acl_logging_configuration.tf │ │ ├── aws_worklink_fleet.tf │ │ ├── aws_worklink_website_certificate_authority_association.tf │ │ ├── aws_workspaces_connection_alias.tf │ │ ├── aws_workspaces_directory.tf │ │ ├── aws_workspaces_ip_group.tf │ │ ├── aws_workspaces_workspace.tf │ │ ├── aws_workspacesweb_browser_settings.tf │ │ ├── aws_workspacesweb_data_protection_settings.tf │ │ ├── aws_workspacesweb_ip_access_settings.tf │ │ ├── aws_workspacesweb_network_settings.tf │ │ ├── aws_workspacesweb_user_access_logging_settings.tf │ │ ├── aws_workspacesweb_user_settings.tf │ │ ├── aws_xray_encryption_config.tf │ │ ├── aws_xray_group.tf │ │ ├── aws_xray_resource_policy.tf │ │ ├── aws_xray_sampling_rule.tf │ │ ├── beanstalk.tf │ │ ├── data.aws_account_primary_contact.tf │ │ ├── data.aws_acm_certificate.tf │ │ ├── data.aws_acmpca_certificate.tf │ │ ├── data.aws_acmpca_certificate_authority.tf │ │ ├── data.aws_ami_ids.tf │ │ ├── data.aws_api_gateway_api_key.tf │ │ ├── data.aws_api_gateway_authorizer.tf │ │ ├── data.aws_api_gateway_authorizers.tf │ │ ├── data.aws_api_gateway_domain_name.tf │ │ ├── data.aws_api_gateway_export.tf │ │ ├── data.aws_api_gateway_resource.tf │ │ ├── data.aws_api_gateway_rest_api.tf │ │ ├── data.aws_api_gateway_sdk.tf │ │ ├── data.aws_api_gateway_vpc_link.tf │ │ ├── data.aws_apigateway_api_keys.tf │ │ ├── data.aws_apigatewayv2_api.tf │ │ ├── data.aws_apigatewayv2_apis.tf │ │ ├── data.aws_apigatewayv2_export.tf │ │ ├── data.aws_apigatewayv2_vpc_link.tf │ │ ├── data.aws_appconfig_application.tf │ │ ├── data.aws_appconfig_configuration_profile.tf │ │ ├── data.aws_appconfig_configuration_profiles.tf │ │ ├── data.aws_appconfig_environment.tf │ │ ├── data.aws_appconfig_environments.tf │ │ ├── data.aws_appintegrations_event_integration.tf │ │ ├── data.aws_appmesh_gateway_route.tf │ │ ├── data.aws_appmesh_mesh.tf │ │ ├── data.aws_appmesh_route.tf │ │ ├── data.aws_appmesh_virtual_gateway.tf │ │ ├── data.aws_appmesh_virtual_node.tf │ │ ├── data.aws_appmesh_virtual_router.tf │ │ ├── data.aws_appmesh_virtual_service.tf │ │ ├── data.aws_apprunner_hosted_zone_id.tf │ │ ├── data.aws_appstream_image.tf │ │ ├── data.aws_arn.tf │ │ ├── data.aws_athena_named_query.tf │ │ ├── data.aws_auditmanager_control.tf │ │ ├── data.aws_auditmanager_framework.tf │ │ ├── data.aws_autoscaling_group.tf │ │ ├── data.aws_autoscaling_groups.tf │ │ ├── data.aws_availability_zone.tf │ │ ├── data.aws_backup_framework.tf │ │ ├── data.aws_backup_plan.tf │ │ ├── data.aws_backup_report_plan.tf │ │ ├── data.aws_backup_selection.tf │ │ ├── data.aws_backup_vault.tf │ │ ├── data.aws_batch_compute_environment.tf │ │ ├── data.aws_batch_job_definition.tf │ │ ├── data.aws_batch_job_queue.tf │ │ ├── data.aws_batch_scheduling_policy.tf │ │ ├── data.aws_bedrock_custom_model.tf │ │ ├── data.aws_bedrock_custom_models.tf │ │ ├── data.aws_bedrock_foundation_model.tf │ │ ├── data.aws_bedrock_foundation_models.tf │ │ ├── data.aws_bedrock_inference_profile.tf │ │ ├── data.aws_bedrock_inference_profiles.tf │ │ ├── data.aws_bedrockagent_agent_versions.tf │ │ ├── data.aws_billing_service_account.tf │ │ ├── data.aws_billing_views.tf │ │ ├── data.aws_budgets_budget.tf │ │ ├── data.aws_ce_cost_category.tf │ │ ├── data.aws_ce_tags.tf │ │ ├── data.aws_chatbot_slack_workspace.tf │ │ ├── data.aws_cloudcontrolapi_resource.tf │ │ ├── data.aws_cloudformation_export.tf │ │ ├── data.aws_cloudformation_stack.tf │ │ ├── data.aws_cloudformation_type.tf │ │ ├── data.aws_cloudfront_cache_policy.tf │ │ ├── data.aws_cloudfront_distribution.tf │ │ ├── data.aws_cloudfront_function.tf │ │ ├── data.aws_cloudfront_log_delivery_canonical_user_id.tf │ │ ├── data.aws_cloudfront_origin_access_control.tf │ │ ├── data.aws_cloudfront_origin_access_identities.tf │ │ ├── data.aws_cloudfront_origin_access_identity.tf │ │ ├── data.aws_cloudfront_origin_request_policy.tf │ │ ├── data.aws_cloudfront_realtime_log_config.tf │ │ ├── data.aws_cloudfront_response_headers_policy.tf │ │ ├── data.aws_cloudhsm_v2_cluster.tf │ │ ├── data.aws_cloudtrail_service_account.tf │ │ ├── data.aws_cloudwatch_contributor_managed_insight_rules.tf │ │ ├── data.aws_cloudwatch_event_bus.tf │ │ ├── data.aws_cloudwatch_event_buses.tf │ │ ├── data.aws_cloudwatch_event_connection.tf │ │ ├── data.aws_cloudwatch_event_source.tf │ │ ├── data.aws_cloudwatch_log_data_protection_policy_document.tf │ │ ├── data.aws_cloudwatch_log_group.tf │ │ ├── data.aws_cloudwatch_log_groups.tf │ │ ├── data.aws_codeartifact_authorization_token.tf │ │ ├── data.aws_codeartifact_repository_endpoint.tf │ │ ├── data.aws_codebuild_fleet.tf │ │ ├── data.aws_codecatalyst_dev_environment.tf │ │ ├── data.aws_codecommit_approval_rule_template.tf │ │ ├── data.aws_codecommit_repository.tf │ │ ├── data.aws_codeguruprofiler_profiling_group.tf │ │ ├── data.aws_codestarconnections_connection.tf │ │ ├── data.aws_cognito_identity_pool.tf │ │ ├── data.aws_cognito_user_group.tf │ │ ├── data.aws_cognito_user_groups.tf │ │ ├── data.aws_cognito_user_pool.tf │ │ ├── data.aws_cognito_user_pool_client.tf │ │ ├── data.aws_cognito_user_pool_clients.tf │ │ ├── data.aws_cognito_user_pool_signing_certificate.tf │ │ ├── data.aws_cognito_user_pools.tf │ │ ├── data.aws_connect_bot_association.tf │ │ ├── data.aws_connect_contact_flow.tf │ │ ├── data.aws_connect_contact_flow_module.tf │ │ ├── data.aws_connect_hours_of_operation.tf │ │ ├── data.aws_connect_instance.tf │ │ ├── data.aws_connect_instance_storage_config.tf │ │ ├── data.aws_connect_lambda_function_association.tf │ │ ├── data.aws_connect_prompt.tf │ │ ├── data.aws_connect_queue.tf │ │ ├── data.aws_connect_quick_connect.tf │ │ ├── data.aws_connect_routing_profile.tf │ │ ├── data.aws_connect_security_profile.tf │ │ ├── data.aws_connect_user.tf │ │ ├── data.aws_connect_user_hierarchy_group.tf │ │ ├── data.aws_connect_user_hierarchy_structure.tf │ │ ├── data.aws_connect_vocabulary.tf │ │ ├── data.aws_controltower_controls.tf │ │ ├── data.aws_cur_report_definition.tf │ │ ├── data.aws_customer_gateway.tf │ │ ├── data.aws_datapipeline_pipeline.tf │ │ ├── data.aws_datapipeline_pipeline_definition.tf │ │ ├── data.aws_datazone_domain.tf │ │ ├── data.aws_datazone_environment_blueprint.tf │ │ ├── data.aws_db_cluster_snapshot.tf │ │ ├── data.aws_db_event_categories.tf │ │ ├── data.aws_db_instance.tf │ │ ├── data.aws_db_instances.tf │ │ ├── data.aws_db_parameter_group.tf │ │ ├── data.aws_db_proxy.tf │ │ ├── data.aws_db_snapshot.tf │ │ ├── data.aws_db_subnet_group.tf │ │ ├── data.aws_default_tags.tf │ │ ├── data.aws_devopsguru_notification_channel.tf │ │ ├── data.aws_devopsguru_resource_collection.tf │ │ ├── data.aws_directory_service_directory.tf │ │ ├── data.aws_dms_certificate.tf │ │ ├── data.aws_dms_endpoint.tf │ │ ├── data.aws_dms_replication_instance.tf │ │ ├── data.aws_dms_replication_subnet_group.tf │ │ ├── data.aws_dms_replication_task.tf │ │ ├── data.aws_docdb_engine_version.tf │ │ ├── data.aws_docdb_orderable_db_instance.tf │ │ ├── data.aws_dx_connection.tf │ │ ├── data.aws_dx_gateway.tf │ │ ├── data.aws_dx_location.tf │ │ ├── data.aws_dx_locations.tf │ │ ├── data.aws_dx_router_configuration.tf │ │ ├── data.aws_dynamodb_table_item.tf │ │ ├── data.aws_dynamodb_tables.tf │ │ ├── data.aws_ebs_default_kms_key.tf │ │ ├── data.aws_ebs_encryption_by_default.tf │ │ ├── data.aws_ebs_snapshot.tf │ │ ├── data.aws_ebs_snapshot_ids.tf │ │ ├── data.aws_ebs_volume.tf │ │ ├── data.aws_ebs_volumes.tf │ │ ├── data.aws_ec2_capacity_block_offering.tf │ │ ├── data.aws_ec2_client_vpn_endpoint.tf │ │ ├── data.aws_ec2_coip_pool.tf │ │ ├── data.aws_ec2_coip_pools.tf │ │ ├── data.aws_ec2_host.tf │ │ ├── data.aws_ec2_instance_type.tf │ │ ├── data.aws_ec2_instance_type_offering.tf │ │ ├── data.aws_ec2_instance_type_offerings.tf │ │ ├── data.aws_ec2_instance_types.tf │ │ ├── data.aws_ec2_local_gateway.tf │ │ ├── data.aws_ec2_local_gateway_route_table.tf │ │ ├── data.aws_ec2_local_gateway_route_tables.tf │ │ ├── data.aws_ec2_local_gateway_virtual_interface.tf │ │ ├── data.aws_ec2_local_gateway_virtual_interface_group.tf │ │ ├── data.aws_ec2_local_gateway_virtual_interface_groups.tf │ │ ├── data.aws_ec2_local_gateways.tf │ │ ├── data.aws_ec2_managed_prefix_list.tf │ │ ├── data.aws_ec2_managed_prefix_lists.tf │ │ ├── data.aws_ec2_network_insights_analysis.tf │ │ ├── data.aws_ec2_network_insights_path.tf │ │ ├── data.aws_ec2_public_ipv4_pool.tf │ │ ├── data.aws_ec2_public_ipv4_pools.tf │ │ ├── data.aws_ec2_serial_console_access.tf │ │ ├── data.aws_ec2_spot_price.tf │ │ ├── data.aws_ec2_transit_gateway.tf │ │ ├── data.aws_ec2_transit_gateway_attachment.tf │ │ ├── data.aws_ec2_transit_gateway_connect.tf │ │ ├── data.aws_ec2_transit_gateway_connect_peer.tf │ │ ├── data.aws_ec2_transit_gateway_dx_gateway_attachment.tf │ │ ├── data.aws_ec2_transit_gateway_multicast_domain.tf │ │ ├── data.aws_ec2_transit_gateway_peering_attachment.tf │ │ ├── data.aws_ec2_transit_gateway_peering_attachments.tf │ │ ├── data.aws_ec2_transit_gateway_route_table.tf │ │ ├── data.aws_ec2_transit_gateway_route_table_associations.tf │ │ ├── data.aws_ec2_transit_gateway_route_table_routes.tf │ │ ├── data.aws_ec2_transit_gateway_route_tables.tf │ │ ├── data.aws_ec2_transit_gateway_vpc_attachment.tf │ │ ├── data.aws_ec2_transit_gateway_vpc_attachments.tf │ │ ├── data.aws_ec2_transit_gateway_vpn_attachment.tf │ │ ├── data.aws_ec2_transitgateway_route_table_propagations.tf │ │ ├── data.aws_ecr_authorization_token.tf │ │ ├── data.aws_ecr_image.tf │ │ ├── data.aws_ecr_images.tf │ │ ├── data.aws_ecr_lifecycle_policy_document.tf │ │ ├── data.aws_ecr_pull_through_cache_rule.tf │ │ ├── data.aws_ecr_repositories.tf │ │ ├── data.aws_ecr_repository.tf │ │ ├── data.aws_ecr_repository_creation_template.tf │ │ ├── data.aws_ecrpublic_authorization_token.tf │ │ ├── data.aws_ecrpublic_images.tf │ │ ├── data.aws_ecs_cluster.tf │ │ ├── data.aws_ecs_clusters.tf │ │ ├── data.aws_ecs_container_definition.tf │ │ ├── data.aws_ecs_service.tf │ │ ├── data.aws_ecs_task_definition.tf │ │ ├── data.aws_ecs_task_execution.tf │ │ ├── data.aws_efs_access_point.tf │ │ ├── data.aws_efs_access_points.tf │ │ ├── data.aws_efs_file_system.tf │ │ ├── data.aws_efs_mount_target.tf │ │ ├── data.aws_eip.tf │ │ ├── data.aws_eips.tf │ │ ├── data.aws_eks_access_entry.tf │ │ ├── data.aws_eks_addon.tf │ │ ├── data.aws_eks_addon_version.tf │ │ ├── data.aws_eks_cluster.tf │ │ ├── data.aws_eks_cluster_auth.tf │ │ ├── data.aws_eks_cluster_versions.tf │ │ ├── data.aws_eks_clusters.tf │ │ ├── data.aws_eks_node_group.tf │ │ ├── data.aws_eks_node_groups.tf │ │ ├── data.aws_elastic_beanstalk_application.tf │ │ ├── data.aws_elastic_beanstalk_hosted_zone.tf │ │ ├── data.aws_elastic_beanstalk_solution_stack.tf │ │ ├── data.aws_elasticache_cluster.tf │ │ ├── data.aws_elasticache_replication_group.tf │ │ ├── data.aws_elasticache_reserved_cache_node_offering.tf │ │ ├── data.aws_elasticache_serverless_cache.tf │ │ ├── data.aws_elasticache_subnet_group.tf │ │ ├── data.aws_elasticache_user.tf │ │ ├── data.aws_elasticsearch_domain.tf │ │ ├── data.aws_elb.tf │ │ ├── data.aws_elb_hosted_zone_id.tf │ │ ├── data.aws_elb_service_account.tf │ │ ├── data.aws_emr_release_labels.tf │ │ ├── data.aws_emr_supported_instance_types.tf │ │ ├── data.aws_emrcontainers_virtual_cluster.tf │ │ ├── data.aws_fis_experiment_templates.tf │ │ ├── data.aws_fsx_ontap_file_system.tf │ │ ├── data.aws_fsx_ontap_storage_virtual_machine.tf │ │ ├── data.aws_fsx_ontap_storage_virtual_machines.tf │ │ ├── data.aws_fsx_openzfs_snapshot.tf │ │ ├── data.aws_fsx_windows_file_system.tf │ │ ├── data.aws_globalaccelerator_accelerator.tf │ │ ├── data.aws_globalaccelerator_custom_routing_accelerator.tf │ │ ├── data.aws_glue_catalog_table.tf │ │ ├── data.aws_glue_registry.tf │ │ ├── data.aws_glue_script.tf │ │ ├── data.aws_grafana_workspace.tf │ │ ├── data.aws_guardduty_detector.tf │ │ ├── data.aws_guardduty_finding_ids.tf │ │ ├── data.aws_iam_access_keys.tf │ │ ├── data.aws_iam_account_alias.tf │ │ ├── data.aws_iam_group.tf │ │ ├── data.aws_iam_instance_profile.tf │ │ ├── data.aws_iam_instance_profiles.tf │ │ ├── data.aws_iam_openid_connect_provider.tf │ │ ├── data.aws_iam_policy.tf │ │ ├── data.aws_iam_principal_policy_simulation.tf │ │ ├── data.aws_iam_role.tf │ │ ├── data.aws_iam_roles.tf │ │ ├── data.aws_iam_saml_provider.tf │ │ ├── data.aws_iam_server_certificate.tf │ │ ├── data.aws_iam_session_context.tf │ │ ├── data.aws_iam_user.tf │ │ ├── data.aws_iam_user_ssh_key.tf │ │ ├── data.aws_iam_users.tf │ │ ├── data.aws_identitystore_group.tf │ │ ├── data.aws_identitystore_group_memberships.tf │ │ ├── data.aws_identitystore_groups.tf │ │ ├── data.aws_identitystore_user.tf │ │ ├── data.aws_identitystore_users.tf │ │ ├── data.aws_imagebuilder_component.tf │ │ ├── data.aws_imagebuilder_components.tf │ │ ├── data.aws_imagebuilder_container_recipe.tf │ │ ├── data.aws_imagebuilder_container_recipes.tf │ │ ├── data.aws_imagebuilder_distribution_configuration.tf │ │ ├── data.aws_imagebuilder_distribution_configurations.tf │ │ ├── data.aws_imagebuilder_image.tf │ │ ├── data.aws_imagebuilder_image_pipeline.tf │ │ ├── data.aws_imagebuilder_image_pipelines.tf │ │ ├── data.aws_imagebuilder_image_recipe.tf │ │ ├── data.aws_imagebuilder_image_recipes.tf │ │ ├── data.aws_imagebuilder_infrastructure_configuration.tf │ │ ├── data.aws_imagebuilder_infrastructure_configurations.tf │ │ ├── data.aws_inspector_rule_package.tf │ │ ├── data.aws_inspector_rules_packages.tf │ │ ├── data.aws_instance.tf │ │ ├── data.aws_instances.tf │ │ ├── data.aws_internet_gateway.tf │ │ ├── data.aws_iot_endpoint.tf │ │ ├── data.aws_iot_registration_code.tf │ │ ├── data.aws_ip_ranges.tf │ │ ├── data.aws_ivs_stream_key.tf │ │ ├── data.aws_kendra_experience.tf │ │ ├── data.aws_kendra_faq.tf │ │ ├── data.aws_kendra_index.tf │ │ ├── data.aws_kendra_query_suggestions_block_list.tf │ │ ├── data.aws_kendra_thesaurus.tf │ │ ├── data.aws_key_pair.tf │ │ ├── data.aws_kinesis_firehose_delivery_stream.tf │ │ ├── data.aws_kinesis_stream.tf │ │ ├── data.aws_kinesis_stream_consumer.tf │ │ ├── data.aws_kms_alias.tf │ │ ├── data.aws_kms_ciphertext.tf │ │ ├── data.aws_kms_custom_key_store.tf │ │ ├── data.aws_kms_key.tf │ │ ├── data.aws_kms_public_key.tf │ │ ├── data.aws_kms_secret.tf │ │ ├── data.aws_kms_secrets.tf │ │ ├── data.aws_lakeformation_data_lake_settings.tf │ │ ├── data.aws_lakeformation_permissions.tf │ │ ├── data.aws_lakeformation_resource.tf │ │ ├── data.aws_lambda_alias.tf │ │ ├── data.aws_lambda_code_signing_config.tf │ │ ├── data.aws_lambda_function.tf │ │ ├── data.aws_lambda_function_url.tf │ │ ├── data.aws_lambda_functions.tf │ │ ├── data.aws_lambda_invocation.tf │ │ ├── data.aws_lambda_layer_version.tf │ │ ├── data.aws_launch_configuration.tf │ │ ├── data.aws_launch_template.tf │ │ ├── data.aws_lb.tf │ │ ├── data.aws_lb_hosted_zone_id.tf │ │ ├── data.aws_lb_listener.tf │ │ ├── data.aws_lb_listener_rule.tf │ │ ├── data.aws_lb_target_group.tf │ │ ├── data.aws_lb_trust_store.tf │ │ ├── data.aws_lbs.tf │ │ ├── data.aws_lex_bot.tf │ │ ├── data.aws_lex_bot_alias.tf │ │ ├── data.aws_lex_intent.tf │ │ ├── data.aws_lex_slot_type.tf │ │ ├── data.aws_licensemanager_grants.tf │ │ ├── data.aws_licensemanager_received_license.tf │ │ ├── data.aws_licensemanager_received_licenses.tf │ │ ├── data.aws_location_geofence_collection.tf │ │ ├── data.aws_location_map.tf │ │ ├── data.aws_location_place_index.tf │ │ ├── data.aws_location_route_calculator.tf │ │ ├── data.aws_location_tracker.tf │ │ ├── data.aws_location_tracker_association.tf │ │ ├── data.aws_location_tracker_associations.tf │ │ ├── data.aws_media_convert_queue.tf │ │ ├── data.aws_medialive_input.tf │ │ ├── data.aws_memorydb_acl.tf │ │ ├── data.aws_memorydb_cluster.tf │ │ ├── data.aws_memorydb_parameter_group.tf │ │ ├── data.aws_memorydb_snapshot.tf │ │ ├── data.aws_memorydb_subnet_group.tf │ │ ├── data.aws_memorydb_user.tf │ │ ├── data.aws_mq_broker.tf │ │ ├── data.aws_mq_broker_engine_types.tf │ │ ├── data.aws_mq_broker_instance_type_offerings.tf │ │ ├── data.aws_msk_bootstrap_brokers.tf │ │ ├── data.aws_msk_broker_nodes.tf │ │ ├── data.aws_msk_cluster.tf │ │ ├── data.aws_msk_configuration.tf │ │ ├── data.aws_msk_kafka_version.tf │ │ ├── data.aws_msk_vpc_connection.tf │ │ ├── data.aws_mskconnect_connector.tf │ │ ├── data.aws_mskconnect_custom_plugin.tf │ │ ├── data.aws_mskconnect_worker_configuration.tf │ │ ├── data.aws_nat_gateway.tf │ │ ├── data.aws_nat_gateways.tf │ │ ├── data.aws_neptune_engine_version.tf │ │ ├── data.aws_neptune_orderable_db_instance.tf │ │ ├── data.aws_network_acls.tf │ │ ├── data.aws_network_interface.tf │ │ ├── data.aws_network_interfaces.tf │ │ ├── data.aws_networkfirewall_firewall.tf │ │ ├── data.aws_networkfirewall_firewall_policy.tf │ │ ├── data.aws_networkfirewall_resource_policy.tf │ │ ├── data.aws_networkmanager_connection.tf │ │ ├── data.aws_networkmanager_connections.tf │ │ ├── data.aws_networkmanager_core_network_policy_document.tf │ │ ├── data.aws_networkmanager_device.tf │ │ ├── data.aws_networkmanager_devices.tf │ │ ├── data.aws_networkmanager_global_network.tf │ │ ├── data.aws_networkmanager_global_networks.tf │ │ ├── data.aws_networkmanager_link.tf │ │ ├── data.aws_networkmanager_links.tf │ │ ├── data.aws_networkmanager_site.tf │ │ ├── data.aws_networkmanager_sites.tf │ │ ├── data.aws_oam_link.tf │ │ ├── data.aws_oam_links.tf │ │ ├── data.aws_oam_sink.tf │ │ ├── data.aws_oam_sinks.tf │ │ ├── data.aws_object.tf │ │ ├── data.aws_odb_cloud_autonomous_vm_cluster.tf │ │ ├── data.aws_odb_cloud_autonomous_vm_clusters.tf │ │ ├── data.aws_odb_cloud_exadata_infrastructure.tf │ │ ├── data.aws_odb_cloud_exadata_infrastructures.tf │ │ ├── data.aws_odb_cloud_vm_cluster.tf │ │ ├── data.aws_odb_cloud_vm_clusters.tf │ │ ├── data.aws_odb_db_node.tf │ │ ├── data.aws_odb_db_nodes.tf │ │ ├── data.aws_odb_db_server.tf │ │ ├── data.aws_odb_db_servers.tf │ │ ├── data.aws_odb_db_system_shapes.tf │ │ ├── data.aws_odb_gi_versions.tf │ │ ├── data.aws_odb_network.tf │ │ ├── data.aws_odb_network_peering_connection.tf │ │ ├── data.aws_odb_network_peering_connections.tf │ │ ├── data.aws_odb_networks.tf │ │ ├── data.aws_opensearch_domain.tf │ │ ├── data.aws_opensearchserverless_access_policy.tf │ │ ├── data.aws_opensearchserverless_collection.tf │ │ ├── data.aws_opensearchserverless_lifecycle_policy.tf │ │ ├── data.aws_opensearchserverless_security_config.tf │ │ ├── data.aws_opensearchserverless_security_policy.tf │ │ ├── data.aws_opensearchserverless_vpc_endpoint.tf │ │ ├── data.aws_organizations_delegated_administrators.tf │ │ ├── data.aws_organizations_delegated_services.tf │ │ ├── data.aws_organizations_organization.tf │ │ ├── data.aws_organizations_organizational_unit.tf │ │ ├── data.aws_organizations_organizational_unit_child_accounts.tf │ │ ├── data.aws_organizations_organizational_unit_descendant_accounts.tf │ │ ├── data.aws_organizations_organizational_unit_descendant_organizational_units.tf │ │ ├── data.aws_organizations_organizational_units.tf │ │ ├── data.aws_organizations_policies.tf │ │ ├── data.aws_organizations_policies_for_target.tf │ │ ├── data.aws_organizations_policy.tf │ │ ├── data.aws_organizations_resource_tags.tf │ │ ├── data.aws_outposts_asset.tf │ │ ├── data.aws_outposts_assets.tf │ │ ├── data.aws_outposts_outpost.tf │ │ ├── data.aws_outposts_outpost_instance_type.tf │ │ ├── data.aws_outposts_outpost_instance_types.tf │ │ ├── data.aws_outposts_outposts.tf │ │ ├── data.aws_outposts_site.tf │ │ ├── data.aws_outposts_sites.tf │ │ ├── data.aws_polly_voices.tf │ │ ├── data.aws_prefix_list.tf │ │ ├── data.aws_pricing_product.tf │ │ ├── data.aws_prometheus_default_scraper_configuration.tf │ │ ├── data.aws_prometheus_workspace.tf │ │ ├── data.aws_prometheus_workspaces.tf │ │ ├── data.aws_qldb_ledger.tf │ │ ├── data.aws_quicksight_analysis.tf │ │ ├── data.aws_quicksight_data_set.tf │ │ ├── data.aws_quicksight_group.tf │ │ ├── data.aws_quicksight_theme.tf │ │ ├── data.aws_quicksight_user.tf │ │ ├── data.aws_ram_resource_share.tf │ │ ├── data.aws_rds_certificate.tf │ │ ├── data.aws_rds_cluster.tf │ │ ├── data.aws_rds_cluster_parameter_group.tf │ │ ├── data.aws_rds_clusters.tf │ │ ├── data.aws_rds_engine_version.tf │ │ ├── data.aws_rds_global_cluster.tf │ │ ├── data.aws_rds_orderable_db_instance.tf │ │ ├── data.aws_rds_reserved_instance_offering.tf │ │ ├── data.aws_redshift_cluster.tf │ │ ├── data.aws_redshift_cluster_credentials.tf │ │ ├── data.aws_redshift_data_shares.tf │ │ ├── data.aws_redshift_orderable_cluster.tf │ │ ├── data.aws_redshift_producer_data_shares.tf │ │ ├── data.aws_redshift_service_account.tf │ │ ├── data.aws_redshift_subnet_group.tf │ │ ├── data.aws_redshiftserverless_credentials.tf │ │ ├── data.aws_redshiftserverless_namespace.tf │ │ ├── data.aws_redshiftserverless_workgroup.tf │ │ ├── data.aws_region.tf │ │ ├── data.aws_regions.tf │ │ ├── data.aws_resourceexplorer2_search.tf │ │ ├── data.aws_resourcegroupstaggingapi_resources.tf │ │ ├── data.aws_route.tf │ │ ├── data.aws_route53_delegation_set.tf │ │ ├── data.aws_route53_records.tf │ │ ├── data.aws_route53_resolver_endpoint.tf │ │ ├── data.aws_route53_resolver_firewall_config.tf │ │ ├── data.aws_route53_resolver_firewall_domain_list.tf │ │ ├── data.aws_route53_resolver_firewall_rule_group.tf │ │ ├── data.aws_route53_resolver_firewall_rule_group_association.tf │ │ ├── data.aws_route53_resolver_firewall_rules.tf │ │ ├── data.aws_route53_resolver_query_log_config.tf │ │ ├── data.aws_route53_resolver_rule.tf │ │ ├── data.aws_route53_resolver_rules.tf │ │ ├── data.aws_route53_traffic_policy_document.tf │ │ ├── data.aws_route53_zone.tf │ │ ├── data.aws_route53_zones.tf │ │ ├── data.aws_route53profiles_profiles.tf │ │ ├── data.aws_route_table.tf │ │ ├── data.aws_route_tables.tf │ │ ├── data.aws_s3_access_point.tf │ │ ├── data.aws_s3_account_public_access_block.tf │ │ ├── data.aws_s3_bucket.selected.tf │ │ ├── data.aws_s3_bucket_objects.tf │ │ ├── data.aws_s3_bucket_policy.tf │ │ ├── data.aws_s3_directory_buckets.tf │ │ ├── data.aws_s3_objects.tf │ │ ├── data.aws_s3control_multi_region_access_point.tf │ │ ├── data.aws_sagemaker_prebuilt_ecr_image.tf │ │ ├── data.aws_saml_provider.tf │ │ ├── data.aws_secretsmanager_random_password.tf │ │ ├── data.aws_secretsmanager_secret.tf │ │ ├── data.aws_secretsmanager_secret_rotation.tf │ │ ├── data.aws_secretsmanager_secret_version.tf │ │ ├── data.aws_secretsmanager_secret_versions.tf │ │ ├── data.aws_secretsmanager_secrets.tf │ │ ├── data.aws_security_group.tf │ │ ├── data.aws_security_groups.tf │ │ ├── data.aws_securityhub_standards_control_associations.tf │ │ ├── data.aws_serverlessapplicationrepository_application.tf │ │ ├── data.aws_service.tf │ │ ├── data.aws_service_discovery_dns_namespace.tf │ │ ├── data.aws_service_discovery_http_namespace.tf │ │ ├── data.aws_service_discovery_service.tf │ │ ├── data.aws_service_principal.tf │ │ ├── data.aws_servicecatalog_constraint.tf │ │ ├── data.aws_servicecatalog_launch_paths.tf │ │ ├── data.aws_servicecatalog_portfolio.tf │ │ ├── data.aws_servicecatalog_portfolio_constraints.tf │ │ ├── data.aws_servicecatalog_product.tf │ │ ├── data.aws_servicecatalog_provisioning_artifacts.tf │ │ ├── data.aws_servicecatalogappregistry_application.tf │ │ ├── data.aws_servicecatalogappregistry_attribute_group.tf │ │ ├── data.aws_servicecatalogappregistry_attribute_group_associations.tf │ │ ├── data.aws_servicequotas_service.tf │ │ ├── data.aws_servicequotas_service_quota.tf │ │ ├── data.aws_servicequotas_templates.tf │ │ ├── data.aws_ses_active_receipt_rule_set.tf │ │ ├── data.aws_ses_domain_identity.tf │ │ ├── data.aws_ses_email_identity.tf │ │ ├── data.aws_sesv2_configuration_set.tf │ │ ├── data.aws_sesv2_dedicated_ip_pool.tf │ │ ├── data.aws_sesv2_email_identity.tf │ │ ├── data.aws_sesv2_email_identity_mail_from_attributes.tf │ │ ├── data.aws_sfn_activity.tf │ │ ├── data.aws_sfn_alias.tf │ │ ├── data.aws_sfn_state_machine.tf │ │ ├── data.aws_sfn_state_machine_versions.tf │ │ ├── data.aws_shield_protection.tf │ │ ├── data.aws_signer_signing_job.tf │ │ ├── data.aws_signer_signing_profile.tf │ │ ├── data.aws_sns_topic.tf │ │ ├── data.aws_spot_datafeed_subscription.tf │ │ ├── data.aws_sqs_queue.tf │ │ ├── data.aws_sqs_queues.tf │ │ ├── data.aws_ssm_document.tf │ │ ├── data.aws_ssm_instances.tf │ │ ├── data.aws_ssm_maintenance_windows.tf │ │ ├── data.aws_ssm_parameter.tf │ │ ├── data.aws_ssm_parameters_by_path.tf │ │ ├── data.aws_ssm_patch_baseline.tf │ │ ├── data.aws_ssm_patch_baselines.tf │ │ ├── data.aws_ssmcontacts_contact.tf │ │ ├── data.aws_ssmcontacts_contact_channel.tf │ │ ├── data.aws_ssmcontacts_plan.tf │ │ ├── data.aws_ssmcontacts_rotation.tf │ │ ├── data.aws_ssmincidents_replication_set.tf │ │ ├── data.aws_ssmincidents_response_plan.tf │ │ ├── data.aws_ssoadmin_application.tf │ │ ├── data.aws_ssoadmin_application_assignments.tf │ │ ├── data.aws_ssoadmin_application_providers.tf │ │ ├── data.aws_ssoadmin_instances.tf │ │ ├── data.aws_ssoadmin_permission_set.tf │ │ ├── data.aws_ssoadmin_permission_sets.tf │ │ ├── data.aws_ssoadmin_principal_application_assignments.tf │ │ ├── data.aws_storagegateway_local_disk.tf │ │ ├── data.aws_subnet.tf │ │ ├── data.aws_subnets.tf │ │ ├── data.aws_synthetics_runtime_version.tf │ │ ├── data.aws_synthetics_runtime_versions.tf │ │ ├── data.aws_timestreamwrite_database.tf │ │ ├── data.aws_timestreamwrite_table.tf │ │ ├── data.aws_transfer_connector.tf │ │ ├── data.aws_transfer_server.tf │ │ ├── data.aws_verifiedpermissions_policy_store.tf │ │ ├── data.aws_vpc_dhcp_options.tf │ │ ├── data.aws_vpc_endpoint.tf │ │ ├── data.aws_vpc_endpoint_associations.tf │ │ ├── data.aws_vpc_endpoint_service.tf │ │ ├── data.aws_vpc_ipam.tf │ │ ├── data.aws_vpc_ipam_pool.tf │ │ ├── data.aws_vpc_ipam_pool_cidrs.tf │ │ ├── data.aws_vpc_ipam_pools.tf │ │ ├── data.aws_vpc_ipam_preview_next_cidr.tf │ │ ├── data.aws_vpc_ipams.tf │ │ ├── data.aws_vpc_peering_connection.tf │ │ ├── data.aws_vpc_peering_connections.tf │ │ ├── data.aws_vpc_security_group_rule.tf │ │ ├── data.aws_vpc_security_group_rules.tf │ │ ├── data.aws_vpclattice_auth_policy.tf │ │ ├── data.aws_vpclattice_listener.tf │ │ ├── data.aws_vpclattice_resource_policy.tf │ │ ├── data.aws_vpclattice_service.tf │ │ ├── data.aws_vpclattice_service_network.tf │ │ ├── data.aws_vpcs.all.tf │ │ ├── data.aws_vpn_connection.tf │ │ ├── data.aws_vpn_gateway.tf │ │ ├── data.aws_waf_ipset.tf │ │ ├── data.aws_waf_rate_based_rule.tf │ │ ├── data.aws_waf_rule.tf │ │ ├── data.aws_waf_subscribed_rule_group.tf │ │ ├── data.aws_waf_web_acl.tf │ │ ├── data.aws_wafregional_ipset.tf │ │ ├── data.aws_wafregional_rate_based_rule.tf │ │ ├── data.aws_wafregional_rule.tf │ │ ├── data.aws_wafregional_subscribed_rule_group.tf │ │ ├── data.aws_wafregional_web_acl.tf │ │ ├── data.aws_wafv2_ip_set.tf │ │ ├── data.aws_wafv2_regex_pattern_set.tf │ │ ├── data.aws_wafv2_rule_group.tf │ │ ├── data.aws_wafv2_web_acl.tf │ │ ├── data.aws_workspaces_bundle.tf │ │ ├── data.aws_workspaces_directory.tf │ │ ├── data.aws_workspaces_image.tf │ │ ├── data.aws_workspaces_workspace.tf │ │ ├── data.tf │ │ ├── dataaws_sso_admin_instances.tf │ │ ├── function.js │ │ ├── function.zip │ │ ├── hello.py │ │ ├── idp-metadata.xml │ │ ├── index.js │ │ ├── sagemaker-human-task-ui-template.html │ │ ├── terraform.s3.tf │ │ ├── test.tf │ │ ├── test1.txt │ │ ├── tls.tf │ │ └── todo.zip │ ├── duff │ │ ├── aws_codecatalyst_dev_environment.tf │ │ ├── aws_codecatalyst_project.tf │ │ ├── aws_codecatalyst_source_repository.tf │ │ ├── data.aws_codecatalyst_dev_environment.tf │ │ └── data.aws_dms_certificate.tf │ ├── provider.aws.tf │ ├── role │ │ ├── arns.txt │ │ ├── aws_iam_policy.basic.tf │ │ ├── aws_iam_role.basic.tf │ │ ├── data.aws_iam_roles.tf │ │ ├── imagebuilder │ │ │ └── iam_profile.tf │ │ ├── instance_profile.tf │ │ ├── output.tf │ │ ├── provider.tf │ │ └── terraform.tf │ ├── set-profile.sh │ └── terraform.tf ├── azurerm │ ├── AZURE_PERMISSIONS_README.md │ ├── Makefile │ ├── RESOURCE_SCRIPT_README.md │ ├── Readme.md │ ├── VALIDATION_RESULTS.md │ ├── backup │ │ ├── azurerm_api_management.tf │ │ ├── azurerm_app_configuration.tf │ │ ├── azurerm_app_service.tf │ │ ├── azurerm_app_service_plan.tf │ │ ├── azurerm_bogus_resource.test.tf │ │ ├── azurerm_cognitive_account.tf │ │ ├── azurerm_container_registry.tf │ │ ├── azurerm_cosmosdb_account.tf │ │ ├── azurerm_cosmosdb_table.tf │ │ ├── azurerm_disk_encryption_set.tf │ │ ├── azurerm_dns_zone.tf │ │ ├── azurerm_key_vault.tf │ │ ├── azurerm_key_vault_access_policy.tf │ │ ├── azurerm_key_vault_key.tf │ │ ├── azurerm_kubernetes_cluster.tf │ │ ├── azurerm_linux_virtual_machine.tf │ │ ├── azurerm_linux_virtual_machine_scale_set.tf │ │ ├── azurerm_log_analytics_solution.tf │ │ ├── azurerm_log_analytics_workspace.tf │ │ ├── azurerm_managed_disk.tf │ │ ├── azurerm_management_group.tf │ │ ├── azurerm_mariadb_configuration.tf │ │ ├── azurerm_mariadb_database.tf │ │ ├── azurerm_mariadb_firewall_rule.tf │ │ ├── azurerm_mariadb_server.tf │ │ ├── azurerm_network_interface.tf │ │ ├── azurerm_network_security_group.tf │ │ ├── azurerm_network_security_rule.tf │ │ ├── azurerm_network_watcher.tf │ │ ├── azurerm_network_watcher_flow_log.tf │ │ ├── azurerm_private_endpoint.tf │ │ ├── azurerm_redis_cache.tf │ │ ├── azurerm_resource_group.pike.tf │ │ ├── azurerm_role_assignment.tf │ │ ├── azurerm_search_service.tf │ │ ├── azurerm_security_center_contact.tf │ │ ├── azurerm_security_center_setting.tf │ │ ├── azurerm_security_center_workspace.tf │ │ ├── azurerm_service_plan.tf │ │ ├── azurerm_storage_account.tf │ │ ├── azurerm_storage_account_customer_managed_key.tf │ │ ├── azurerm_storage_account_network_rules.tf │ │ ├── azurerm_storage_container.tf │ │ ├── azurerm_storage_sync.tf │ │ ├── azurerm_storage_sync_group.tf │ │ ├── azurerm_subnet.tf │ │ ├── azurerm_virtual_machine.tf │ │ ├── azurerm_virtual_machine_scale_set.tf │ │ ├── azurerm_virtual_network.tf │ │ ├── azurerm_virtual_network_peering.tf │ │ ├── azurerm_web_pubsub.tf │ │ ├── azurerm_windows_virtual_machine.tf │ │ ├── azurerm_windows_virtual_machine_scale_set.tf │ │ ├── backend.tf │ │ ├── data.azurerm_api_management.tf │ │ ├── data.azurerm_api_management_api.tf │ │ ├── data.azurerm_api_management_api_version_set.tf │ │ ├── data.azurerm_api_management_gateway.tf │ │ ├── data.azurerm_api_management_gateway_host_name_configuration.tf │ │ ├── data.azurerm_api_management_group.tf │ │ ├── data.azurerm_api_management_product.tf │ │ ├── data.azurerm_api_management_user.tf │ │ ├── data.azurerm_app_configuration.tf │ │ ├── data.azurerm_app_configuration_key.tf │ │ ├── data.azurerm_app_configuration_keys.tf │ │ ├── data.azurerm_app_service.tf │ │ ├── data.azurerm_app_service_certificate.tf │ │ ├── data.azurerm_app_service_certificate_order.tf │ │ ├── data.azurerm_app_service_environment.tf │ │ ├── data.azurerm_app_service_environment_v3.tf │ │ ├── data.azurerm_app_service_plan.tf │ │ ├── data.azurerm_application_gateway.tf │ │ ├── data.azurerm_application_insights.tf │ │ ├── data.azurerm_application_security_group.tf │ │ ├── data.azurerm_arc_machine.tf │ │ ├── data.azurerm_attestation.tf │ │ ├── data.azurerm_automation_account.tf │ │ ├── data.azurerm_automation_variable_bool.tf │ │ ├── data.azurerm_automation_variable_datetime.tf │ │ ├── data.azurerm_automation_variable_int.tf │ │ ├── data.azurerm_automation_variable_object.tf │ │ ├── data.azurerm_automation_variable_string.tf │ │ ├── data.azurerm_automation_variables.tf │ │ ├── data.azurerm_availability_set.tf │ │ ├── data.azurerm_backup_policy_file_share.tf │ │ ├── data.azurerm_backup_policy_vm.tf │ │ ├── data.azurerm_bastion_host.tf │ │ ├── data.azurerm_batch_account.tf │ │ ├── data.azurerm_batch_application.tf │ │ ├── data.azurerm_batch_certificate.tf │ │ ├── data.azurerm_batch_pool.tf │ │ ├── data.azurerm_client_config.tf │ │ ├── data.azurerm_key_vault_access_policy.tf │ │ ├── data.azurerm_key_vault_certificate.tf │ │ ├── data.azurerm_key_vault_certificate_data.tf │ │ ├── data.azurerm_key_vault_certificate_issuer.tf │ │ ├── data.azurerm_key_vault_certificates.tf │ │ ├── data.azurerm_key_vault_encrypted_value.tf │ │ ├── data.azurerm_key_vault_managed_hardware_security_module.tf │ │ ├── data.azurerm_key_vault_secret.tf │ │ ├── data.azurerm_key_vault_secrets.tf │ │ ├── data.azurerm_network_watcher.tf │ │ ├── data.azurerm_public_ip.tf │ │ ├── data.azurerm_public_ip_prefix.tf │ │ ├── data.azurerm_public_ips.tf │ │ ├── data.azurerm_redis_cache.tf │ │ ├── data.azurerm_redis_enterprise_database.tf │ │ ├── data.azurerm_resource_group.tf │ │ ├── data.azurerm_resource_group_template_deployment.tf │ │ ├── data.azurerm_resources.tf │ │ ├── data.azurerm_role_definition.tf │ │ ├── data.azurerm_route_filter.tf │ │ ├── data.azurerm_route_table.tf │ │ ├── data.azurerm_sentinel_alert_rule.tf │ │ ├── data.azurerm_sentinel_alert_rule_template.tf │ │ ├── data.azurerm_service_plan.tf │ │ ├── data.azurerm_servicebus_namespace.tf │ │ ├── data.azurerm_servicebus_namespace_authorization_rule.tf │ │ ├── data.azurerm_servicebus_queue.tf │ │ ├── data.azurerm_servicebus_queue_authorization_rule.tf │ │ ├── data.azurerm_servicebus_subscription.tf │ │ ├── data.azurerm_servicebus_topic.tf │ │ ├── data.azurerm_shared_image.tf │ │ ├── data.azurerm_shared_image_gallery.tf │ │ ├── data.azurerm_shared_image_version.tf │ │ ├── data.azurerm_shared_image_versions.tf │ │ ├── data.azurerm_signalr_service.tf │ │ ├── data.azurerm_site_recovery_fabric.tf │ │ ├── data.azurerm_site_recovery_protection_container.tf │ │ ├── data.azurerm_site_recovery_replication_policy.tf │ │ ├── data.azurerm_snapshot.tf │ │ ├── data.azurerm_source_control_token.tf │ │ ├── data.azurerm_spring_cloud_app.tf │ │ ├── data.azurerm_spring_cloud_service.tf │ │ ├── data.azurerm_sql_database.tf │ │ ├── data.azurerm_sql_managed_instance.tf │ │ ├── data.azurerm_sql_server.tf │ │ ├── data.azurerm_ssh_public_key.tf │ │ ├── data.azurerm_stack_hci_cluster.tf │ │ ├── data.azurerm_storage_account.tf │ │ ├── data.azurerm_storage_account_blob_container_sas.tf │ │ ├── data.azurerm_storage_account_sas.tf │ │ ├── data.azurerm_storage_blob.tf │ │ ├── data.azurerm_storage_container.tf │ │ ├── data.azurerm_storage_containers.tf │ │ ├── data.azurerm_storage_encryption_scope.tf │ │ ├── data.azurerm_storage_management_policy.tf │ │ ├── data.azurerm_storage_share.tf │ │ ├── data.azurerm_storage_sync.tf │ │ ├── data.azurerm_storage_sync_group.tf │ │ ├── data.azurerm_storage_table_entity.tf │ │ ├── data.azurerm_stream_analytics_job.tf │ │ ├── data.azurerm_subnet.tf │ │ ├── data.azurerm_subscription_template_deployment.tf │ │ ├── data.azurerm_subscriptions.tf │ │ ├── data.azurerm_synapse_workspace.tf │ │ ├── data.azurerm_template_spec_version.tf │ │ ├── data.azurerm_tenant_template_deployment.tf │ │ ├── data.azurerm_traffic_manager_geographical_location.tf │ │ ├── data.azurerm_traffic_manager_profile.tf │ │ ├── data.azurerm_user_assigned_identity.tf │ │ ├── data.azurerm_virtual_desktop_host_pool.tf │ │ ├── data.azurerm_virtual_hub.tf │ │ ├── data.azurerm_virtual_hub_connection.tf │ │ ├── data.azurerm_virtual_hub_route_table.tf │ │ ├── data.azurerm_virtual_machine.tf │ │ ├── data.azurerm_virtual_machine_scale_set.tf │ │ ├── data.azurerm_virtual_network.tf │ │ ├── data.azurerm_virtual_network_gateway.tf │ │ ├── data.azurerm_virtual_network_gateway_connection.tf │ │ ├── data.azurerm_virtual_wan.tf │ │ ├── data.azurerm_vmware_private_cloud.tf │ │ ├── data.azurerm_vpn_gateway.tf │ │ ├── data.azurerm_web_application_firewall_policy.tf │ │ ├── data.azurerm_web_pubsub.tf │ │ ├── data.azurerm_web_pubsub_private_link_resource.tf │ │ ├── data.azurerm_windows_function_app.tf │ │ └── data.azurerm_windows_web_app.tf │ ├── duff │ │ ├── data.azurerm_sentinel_alert_rule_anomaly.tf │ │ └── data.azurerm_servicebus_topic_authorization_rule.tf │ ├── export_azure_permissions.ps1 │ ├── parse_azure_permissions.py │ ├── provider.tf │ ├── role │ │ ├── Makefile │ │ ├── azuread_service_principal.pike.tf │ │ ├── azurerm_role_assignment.role_assignment.tf │ │ ├── azurerm_role_definition.tf │ │ ├── outputs.tf │ │ └── terraform.tf │ ├── terraform.tf │ └── validate_datasources.py └── google │ ├── Makefile │ ├── backup │ ├── data.google_access_approval_folder_service_account.tf │ ├── data.google_access_approval_organization_service_account.tf │ ├── data.google_access_approval_project_service_account.tf │ ├── data.google_access_context_manager_access_policy.tf │ ├── data.google_access_context_manager_access_policy_iam_policy.tf │ ├── data.google_active_folder.tf │ ├── data.google_alloydb_cluster.tf │ ├── data.google_alloydb_instance.tf │ ├── data.google_alloydb_locations.tf │ ├── data.google_alloydb_supported_database_flags.tf │ ├── data.google_api_gateway_api_config_iam_policy.tf │ ├── data.google_api_gateway_api_iam_policy.tf │ ├── data.google_api_gateway_gateway_iam_policy.tf │ ├── data.google_apigee_environment_iam_policy.tf │ ├── data.google_app_engine_default_service_account.tf │ ├── data.google_apphub_application.tf │ ├── data.google_apphub_discovered_service.tf │ ├── data.google_apphub_discovered_workload.tf │ ├── data.google_artifact_registry_docker_image.tf │ ├── data.google_artifact_registry_docker_images.tf │ ├── data.google_artifact_registry_locations.tf │ ├── data.google_artifact_registry_maven_artifact.tf │ ├── data.google_artifact_registry_maven_artifacts.tf │ ├── data.google_artifact_registry_npm_package.tf │ ├── data.google_artifact_registry_npm_packages.tf │ ├── data.google_artifact_registry_packages.tf │ ├── data.google_artifact_registry_python_package.tf │ ├── data.google_artifact_registry_python_packages.tf │ ├── data.google_artifact_registry_repositories.tf │ ├── data.google_artifact_registry_repository.tf │ ├── data.google_artifact_registry_repository_iam_policy.tf │ ├── data.google_artifact_registry_tags.tf │ ├── data.google_artifact_registry_versions.tf │ ├── data.google_backup_dr_backup.tf │ ├── data.google_backup_dr_backup_plan_association.tf │ ├── data.google_backup_dr_backup_plan_associations.tf │ ├── data.google_backup_dr_backup_vault.tf │ ├── data.google_backup_dr_data_source.tf │ ├── data.google_backup_dr_data_source_reference.tf │ ├── data.google_backup_dr_data_source_references.tf │ ├── data.google_beyondcorp_app_connection.tf │ ├── data.google_beyondcorp_app_connector.tf │ ├── data.google_beyondcorp_app_gateway.tf │ ├── data.google_beyondcorp_application_iam_policy.tf │ ├── data.google_beyondcorp_security_gateway.tf │ ├── data.google_beyondcorp_security_gateway_application_iam_policy.tf │ ├── data.google_beyondcorp_security_gateway_iam_policy.tf │ ├── data.google_bigquery_analytics_hub_data_exchange_iam_policy.tf │ ├── data.google_bigquery_analytics_hub_listing_iam_policy.tf │ ├── data.google_bigquery_connection_iam_policy.tf │ ├── data.google_bigquery_datapolicy_data_policy_iam_policy.tf │ ├── data.google_bigquery_datapolicyv2_data_policy_iam_policy.tf │ ├── data.google_bigquery_dataset.tf │ ├── data.google_bigquery_dataset_iam_policy.tf │ ├── data.google_bigquery_datasets.tf │ ├── data.google_bigquery_default_service_account.tf │ ├── data.google_bigquery_table.tf │ ├── data.google_bigquery_table_iam_policy.tf │ ├── data.google_bigquery_tables.tf │ ├── data.google_bigtable_instance_iam_policy.tf │ ├── data.google_bigtable_table_iam_policy.tf │ ├── data.google_billing_account.tf │ ├── data.google_billing_account_iam_policy.tf │ ├── data.google_binary_authorization_attestor_iam_policy.tf │ ├── data.google_certificate_manager_certificate_map.tf │ ├── data.google_certificate_manager_certificates.tf │ ├── data.google_certificate_manager_dns_authorization.tf │ ├── data.google_client_config.tf │ ├── data.google_client_openid_userinfo.tf │ ├── data.google_cloud_identity_group_lookup.tf │ ├── data.google_cloud_identity_group_memberships.tf │ ├── data.google_cloud_identity_group_transitive_memberships.tf │ ├── data.google_cloud_identity_groups.tf │ ├── data.google_cloud_identity_policy.tf │ ├── data.google_cloud_quotas_quota_info.tf │ ├── data.google_cloud_quotas_quota_infos.tf │ ├── data.google_cloud_run_locations.tf │ ├── data.google_cloud_run_service.tf │ ├── data.google_cloud_run_service_iam_policy.tf │ ├── data.google_cloud_run_v2_job.tf │ ├── data.google_cloud_run_v2_job_iam_policy.tf │ ├── data.google_cloud_run_v2_service.tf │ ├── data.google_cloud_run_v2_service_iam_policy.tf │ ├── data.google_cloud_run_v2_worker_pool.tf │ ├── data.google_cloud_run_v2_worker_pool_iam_policy.tf │ ├── data.google_cloud_tasks_queue_iam_policy.tf │ ├── data.google_cloudbuild_trigger.tf │ ├── data.google_cloudbuildv2_connection_iam_policy.tf │ ├── data.google_clouddeploy_custom_target_type_iam_policy.tf │ ├── data.google_clouddeploy_delivery_pipeline_iam_policy.tf │ ├── data.google_clouddeploy_target_iam_policy.tf │ ├── data.google_cloudfunctions2_function.tf │ ├── data.google_cloudfunctions2_function_iam_policy.tf │ ├── data.google_cloudfunctions_function.tf │ ├── data.google_cloudfunctions_function_iam_policy.tf │ ├── data.google_colab_runtime_template_iam_policy.tf │ ├── data.google_composer_environment.tf │ ├── data.google_composer_image_versions.tf │ ├── data.google_composer_user_workloads_config_map.tf │ ├── data.google_composer_user_workloads_secret.tf │ ├── data.google_compute_address.tf │ ├── data.google_compute_addresses.tf │ ├── data.google_compute_backend_bucket.tf │ ├── data.google_compute_backend_bucket_iam_policy.tf │ ├── data.google_compute_backend_service.tf │ ├── data.google_compute_backend_service_iam_policy.tf │ ├── data.google_compute_default_service_account.tf │ ├── data.google_compute_disk.tf │ ├── data.google_compute_disk_iam_policy.tf │ ├── data.google_compute_forwarding_rule.tf │ ├── data.google_compute_forwarding_rules.tf │ ├── data.google_compute_global_address.tf │ ├── data.google_compute_global_forwarding_rule.tf │ ├── data.google_compute_ha_vpn_gateway.tf │ ├── data.google_compute_health_check.tf │ ├── data.google_compute_image.image.tf │ ├── data.google_compute_image_iam_policy.tf │ ├── data.google_compute_images.tf │ ├── data.google_compute_instance.tf │ ├── data.google_compute_instance_group.tf │ ├── data.google_compute_instance_group_manager.tf │ ├── data.google_compute_instance_guest_attributes.tf │ ├── data.google_compute_instance_iam_policy.tf │ ├── data.google_compute_instance_serial_port.tf │ ├── data.google_compute_instance_template.tf │ ├── data.google_compute_instance_template_iam_policy.tf │ ├── data.google_compute_instant_snapshot_iam_policy.tf │ ├── data.google_compute_interconnect_location.tf │ ├── data.google_compute_interconnect_locations.tf │ ├── data.google_compute_lb_ip_ranges.tf │ ├── data.google_compute_machine_image_iam_policy.tf │ ├── data.google_compute_machine_types.tf │ ├── data.google_compute_network.tf │ ├── data.google_compute_network_attachment.tf │ ├── data.google_compute_network_endpoint_group.tf │ ├── data.google_compute_network_peering.tf │ ├── data.google_compute_networks.tf │ ├── data.google_compute_node_types.tf │ ├── data.google_compute_region_backend_service.tf │ ├── data.google_compute_region_backend_service_iam_policy.tf │ ├── data.google_compute_region_disk.tf │ ├── data.google_compute_region_disk_iam_policy.tf │ ├── data.google_compute_region_instance_group.tf │ ├── data.google_compute_region_instance_group_manager.tf │ ├── data.google_compute_region_instance_template.tf │ ├── data.google_compute_region_network_endpoint_group.tf │ ├── data.google_compute_region_ssl_certificate.tf │ ├── data.google_compute_regions.tf │ ├── data.google_compute_reservation.tf │ ├── data.google_compute_reservation_block.tf │ ├── data.google_compute_reservation_sub_block.tf │ ├── data.google_compute_resource_policy.tf │ ├── data.google_compute_router.tf │ ├── data.google_compute_router_nat.tf │ ├── data.google_compute_router_status.tf │ ├── data.google_compute_security_policy.tf │ ├── data.google_compute_snapshot.tf │ ├── data.google_compute_snapshot_iam_policy.tf │ ├── data.google_compute_ssl_certificate.tf │ ├── data.google_compute_ssl_policy.tf │ ├── data.google_compute_storage_pool_iam_policy.tf │ ├── data.google_compute_storage_pool_types.tf │ ├── data.google_compute_subnetwork.tf │ ├── data.google_compute_subnetwork_iam_policy.tf │ ├── data.google_compute_subnetworks.tf │ ├── data.google_compute_vpn_gateway.tf │ ├── data.google_compute_zones.tf │ ├── data.google_container_analysis_note_iam_policy.tf │ ├── data.google_container_attached_install_manifest.tf │ ├── data.google_container_attached_versions.tf │ ├── data.google_container_aws_versions.tf │ ├── data.google_container_azure_versions.tf │ ├── data.google_container_cluster.tf │ ├── data.google_container_engine_versions.tf │ ├── data.google_container_registry_image.tf │ ├── data.google_container_registry_repository.tf │ ├── data.google_data_catalog_entry_group_iam_policy.tf │ ├── data.google_data_catalog_policy_tag_iam_policy.tf │ ├── data.google_data_catalog_tag_template_iam_policy.tf │ ├── data.google_data_catalog_taxonomy_iam_policy.tf │ ├── data.google_data_fusion_instance_iam_policy.tf │ ├── data.google_dataform_repository_iam_policy.tf │ ├── data.google_dataplex_aspect_type_iam_policy.tf │ ├── data.google_dataplex_asset_iam_policy.tf │ ├── data.google_dataplex_data_quality_rules.tf │ ├── data.google_dataplex_datascan_iam_policy.tf │ ├── data.google_dataplex_entry_group_iam_policy.tf │ ├── data.google_dataplex_entry_type_iam_policy.tf │ ├── data.google_dataplex_glossary_iam_policy.tf │ ├── data.google_dataplex_lake_iam_policy.tf │ ├── data.google_dataplex_task_iam_policy.tf │ ├── data.google_dataplex_zone_iam_policy.tf │ ├── data.google_dataproc_autoscaling_policy_iam_policy.tf │ ├── data.google_dataproc_cluster_iam_policy.tf │ ├── data.google_dataproc_job_iam_policy.tf │ ├── data.google_dataproc_metastore_database_iam_policy.tf │ ├── data.google_dataproc_metastore_federation_iam_policy.tf │ ├── data.google_dataproc_metastore_service.tf │ ├── data.google_dataproc_metastore_service_iam_policy.tf │ ├── data.google_dataproc_metastore_table_iam_policy.tf │ ├── data.google_datastream_static_ips.tf │ ├── data.google_dns_keys.tf │ ├── data.google_dns_managed_zone.tf │ ├── data.google_dns_managed_zone_iam_policy.tf │ ├── data.google_dns_managed_zones.tf │ ├── data.google_dns_record_set.tf │ ├── data.google_endpoints_service_consumers_iam_policy.tf │ ├── data.google_endpoints_service_iam_policy.tf │ ├── data.google_filestore_instance.tf │ ├── data.google_folder.tf │ ├── data.google_folder_iam_policy.tf │ ├── data.google_folder_organization_policy.tf │ ├── data.google_folders.tf │ ├── data.google_gemini_repository_group_iam_policy.tf │ ├── data.google_gke_backup_backup_plan_iam_policy.tf │ ├── data.google_gke_backup_restore_plan_iam_policy.tf │ ├── data.google_gke_hub_feature.tf │ ├── data.google_gke_hub_feature_iam_policy.tf │ ├── data.google_gke_hub_membership.tf │ ├── data.google_gke_hub_membership_iam_policy.tf │ ├── data.google_gke_hub_scope_iam_policy.tf │ ├── data.google_healthcare_consent_store_iam_policy.tf │ ├── data.google_healthcare_dataset_iam_policy.tf │ ├── data.google_healthcare_dicom_store_iam_policy.tf │ ├── data.google_healthcare_fhir_store_iam_policy.tf │ ├── data.google_healthcare_hl7_v2_store_iam_policy.tf │ ├── data.google_iam_policy.tf │ ├── data.google_iam_role.tf │ ├── data.google_iam_workforce_pool_iam_policy.tf │ ├── data.google_iam_workload_identity_pool.tf │ ├── data.google_iam_workload_identity_pool_iam_policy.tf │ ├── data.google_iam_workload_identity_pool_provider.tf │ ├── data.google_iap_app_engine_service_iam_policy.tf │ ├── data.google_iap_app_engine_version_iam_policy.tf │ ├── data.google_iap_client.tf │ ├── data.google_iap_tunnel_dest_group_iam_policy.tf │ ├── data.google_iap_tunnel_iam_policy.tf │ ├── data.google_iap_tunnel_instance_iam_policy.tf │ ├── data.google_iap_web_backend_service_iam_policy.tf │ ├── data.google_iap_web_cloud_run_service_iam_policy.tf │ ├── data.google_iap_web_forwarding_rule_service_iam_policy.tf │ ├── data.google_iap_web_iam_policy.tf │ ├── data.google_iap_web_region_backend_service_iam_policy.tf │ ├── data.google_iap_web_region_forwarding_rule_service_iam_policy.tf │ ├── data.google_iap_web_type_app_engine_iam_policy.tf │ ├── data.google_iap_web_type_compute_iam_policy.tf │ ├── data.google_kms_autokey_config.tf │ ├── data.google_kms_crypto_key.tf │ ├── data.google_kms_crypto_key_iam_policy.tf │ ├── data.google_kms_crypto_key_latest_version.tf │ ├── data.google_kms_crypto_key_version.tf │ ├── data.google_kms_crypto_key_versions.tf │ ├── data.google_kms_crypto_keys.tf │ ├── data.google_kms_ekm_connection_iam_policy.tf │ ├── data.google_kms_key_handle.tf │ ├── data.google_kms_key_handles.tf │ ├── data.google_kms_key_ring.tf │ ├── data.google_kms_key_ring_iam_policy.tf │ ├── data.google_kms_key_rings.tf │ ├── data.google_kms_secret.tf │ ├── data.google_kms_secret_asymmetric.tf │ ├── data.google_kms_secret_ciphertext.tf │ ├── data.google_logging_folder_settings.tf │ ├── data.google_logging_log_view_iam_policy.tf │ ├── data.google_logging_organization_settings.tf │ ├── data.google_logging_project_cmek_settings.tf │ ├── data.google_logging_project_settings.tf │ ├── data.google_lustre_instance.tf │ ├── data.google_memcache_instance.tf │ ├── data.google_memorystore_instance.tf │ ├── data.google_monitoring_app_engine_service.tf │ ├── data.google_monitoring_cluster_istio_service.tf │ ├── data.google_monitoring_istio_canonical_service.tf │ ├── data.google_monitoring_mesh_istio_service.tf │ ├── data.google_monitoring_notification_channel.tf │ ├── data.google_monitoring_uptime_check_ips.tf │ ├── data.google_netblock_ip_ranges.tf │ ├── data.google_network_security_address_group_iam_policy.tf │ ├── data.google_notebooks_instance_iam_policy.tf │ ├── data.google_notebooks_runtime_iam_policy.tf │ ├── data.google_oracle_database_autonomous_database.tf │ ├── data.google_oracle_database_autonomous_databases.tf │ ├── data.google_oracle_database_cloud_exadata_infrastructure.tf │ ├── data.google_oracle_database_cloud_exadata_infrastructures.tf │ ├── data.google_oracle_database_cloud_vm_cluster.tf │ ├── data.google_oracle_database_cloud_vm_clusters.tf │ ├── data.google_oracle_database_db_nodes.tf │ ├── data.google_oracle_database_db_servers.tf │ ├── data.google_organization.tf │ ├── data.google_organization_iam_custom_role.tf │ ├── data.google_organization_iam_custom_roles.tf │ ├── data.google_organization_iam_policy.tf │ ├── data.google_organizations.tf │ ├── data.google_parameter_manager_parameter.tf │ ├── data.google_parameter_manager_parameter_version.tf │ ├── data.google_parameter_manager_parameter_version_render.tf │ ├── data.google_parameter_manager_parameters.tf │ ├── data.google_parameter_manager_regional_parameter.tf │ ├── data.google_parameter_manager_regional_parameter_version.tf │ ├── data.google_parameter_manager_regional_parameter_version_render.tf │ ├── data.google_parameter_manager_regional_parameters.tf │ ├── data.google_privateca_ca_pool_iam_policy.tf │ ├── data.google_privateca_certificate_authority.tf │ ├── data.google_privateca_certificate_template_iam_policy.tf │ ├── data.google_privileged_access_manager_entitlement.tf │ ├── data.google_project.tf │ ├── data.google_project_ancestry.tf │ ├── data.google_project_iam_custom_role.tf │ ├── data.google_project_iam_custom_roles.tf │ ├── data.google_project_iam_policy.tf │ ├── data.google_project_organization_policy.tf │ ├── data.google_project_service.tf │ ├── data.google_projects.tf │ ├── data.google_pubsub_schema_iam_policy.tf │ ├── data.google_pubsub_subscription.tf │ ├── data.google_pubsub_subscription_iam_policy.tf │ ├── data.google_pubsub_topic.tf │ ├── data.google_pubsub_topic_iam_policy.tf │ ├── data.google_redis_cluster.tf │ ├── data.google_redis_instance.tf │ ├── data.google_runtimeconfig_config.tf │ ├── data.google_runtimeconfig_config_iam_policy.tf │ ├── data.google_runtimeconfig_variable.tf │ ├── data.google_scc_source_iam_policy.tf │ ├── data.google_scc_v2_organization_source_iam_policy.tf │ ├── data.google_secret_manager_regional_secret.tf │ ├── data.google_secret_manager_regional_secret_iam_policy.tf │ ├── data.google_secret_manager_regional_secret_version.tf │ ├── data.google_secret_manager_regional_secret_version_access.tf │ ├── data.google_secret_manager_regional_secrets.tf │ ├── data.google_secret_manager_secret.tf │ ├── data.google_secret_manager_secret_iam_policy.tf │ ├── data.google_secret_manager_secret_version.tf │ ├── data.google_secret_manager_secret_version_access.tf │ ├── data.google_secret_manager_secrets.tf │ ├── data.google_secure_source_manager_instance_iam_policy.tf │ ├── data.google_secure_source_manager_repository_iam_policy.tf │ ├── data.google_service_account_access_token.tf │ ├── data.google_service_account_iam_policy.tf │ ├── data.google_service_account_id_token.tf │ ├── data.google_service_account_jwt.tf │ ├── data.google_service_account_key.tf │ ├── data.google_service_accounts.tf │ ├── data.google_service_directory_namespace_iam_policy.tf │ ├── data.google_service_directory_service_iam_policy.tf │ ├── data.google_site_verification_token.tf │ ├── data.google_sourcerepo_repository.tf │ ├── data.google_sourcerepo_repository_iam_policy.tf │ ├── data.google_spanner_database.tf │ ├── data.google_spanner_database_iam_policy.tf │ ├── data.google_spanner_instance.tf │ ├── data.google_spanner_instance_iam_policy.tf │ ├── data.google_sql_backup_run.tf │ ├── data.google_sql_ca_certs.tf │ ├── data.google_sql_database.tf │ ├── data.google_sql_database_instance.tf │ ├── data.google_sql_database_instance_latest_recovery_time.tf │ ├── data.google_sql_database_instances.tf │ ├── data.google_sql_databases.tf │ ├── data.google_sql_tiers.tf │ ├── data.google_storage_bucket.tf │ ├── data.google_storage_bucket_iam_policy.tf │ ├── data.google_storage_bucket_object.tf │ ├── data.google_storage_bucket_object_content.tf │ ├── data.google_storage_bucket_objects.tf │ ├── data.google_storage_buckets.tf │ ├── data.google_storage_control_folder_intelligence_config.tf │ ├── data.google_storage_control_organization_intelligence_config.tf │ ├── data.google_storage_control_project_intelligence_config.tf │ ├── data.google_storage_insights_dataset_config.tf │ ├── data.google_storage_object_signed_url.tf │ ├── data.google_storage_project_service_account.tf │ ├── data.google_storage_transfer_project_service_account.tf │ ├── data.google_tags_tag_key.tf │ ├── data.google_tags_tag_key_iam_policy.tf │ ├── data.google_tags_tag_keys.tf │ ├── data.google_tags_tag_value.tf │ ├── data.google_tags_tag_value_iam_policy.tf │ ├── data.google_tags_tag_values.tf │ ├── data.google_tpu_tensorflow_versions.tf │ ├── data.google_tpu_v2_accelerator_types.tf │ ├── data.google_tpu_v2_runtime_versions.tf │ ├── data.google_vertex_ai_endpoint_iam_policy.tf │ ├── data.google_vertex_ai_feature_group_iam_policy.tf │ ├── data.google_vertex_ai_feature_online_store_featureview_iam_policy.tf │ ├── data.google_vertex_ai_feature_online_store_iam_policy.tf │ ├── data.google_vertex_ai_featurestore_entitytype_iam_policy.tf │ ├── data.google_vertex_ai_featurestore_iam_policy.tf │ ├── data.google_vmwareengine_cluster.tf │ ├── data.google_vmwareengine_external_access_rule.tf │ ├── data.google_vmwareengine_external_address.tf │ ├── data.google_vmwareengine_network.tf │ ├── data.google_vmwareengine_network_peering.tf │ ├── data.google_vmwareengine_network_policy.tf │ ├── data.google_vmwareengine_nsx_credentials.tf │ ├── data.google_vmwareengine_private_cloud.tf │ ├── data.google_vmwareengine_subnet.tf │ ├── data.google_vmwareengine_vcenter_credentials.tf │ ├── data.google_vpc_access_connector.tf │ ├── data.google_workbench_instance_iam_policy.tf │ ├── data.google_workstations_workstation_config_iam_policy.tf │ ├── data.google_workstations_workstation_iam_policy.tf │ ├── duff │ │ ├── data.google_access_context_manager_access_policy.tf │ │ ├── data.google_cloud_identity_group_transitive_memberships.tf │ │ ├── data.google_container_attached_install_manifest.tf │ │ ├── data.google_container_aws_versions.tf │ │ ├── data.google_container_azure_versions.tf │ │ ├── data.google_dataform_repository_iam_policy.tf │ │ ├── data.google_dns_managed_zones.tf │ │ ├── data.google_endpoints_service_iam_policy.tf │ │ ├── data.google_firebase_web_app_config.tf │ │ ├── data.google_organization_iam_policy.tf │ │ ├── data.google_privateca_ca_pool_iam_policy.tf │ │ ├── data.google_privateca_certificate_authority.tf │ │ ├── data.google_privateca_certificate_template_iam_policy.tf │ │ ├── data.google_project_ancestry.tf │ │ ├── data.google_project_iam_policy.tf │ │ ├── data.google_project_organization_policy.tf │ │ ├── data.google_pubsub_schema_iam_policy.tf │ │ ├── data.google_runtimeconfig_config.tf │ │ ├── data.google_runtimeconfig_config_iam_policy.tf │ │ ├── data.google_runtimeconfig_variable.tf │ │ ├── data.google_scc_v2_organization_source_iam_policy.tf │ │ ├── data.google_secure_source_manager_instance_iam_policy.tf │ │ ├── data.google_secure_source_manager_repository_iam_policy.tf │ │ ├── data.google_site_verification_token.tf │ │ ├── data.google_storage_control_folder_intelligence_config.tf │ │ ├── data.google_storage_control_organization_intelligence_config.tf │ │ ├── data.google_storage_control_project_intelligence_config.tf │ │ ├── data.google_tags_tag_key_iam_policy.tf │ │ ├── data.google_tags_tag_keys.tf │ │ ├── data.google_tags_tag_value.tf │ │ ├── data.google_tags_tag_value_iam_policy.tf │ │ ├── data.google_tags_tag_values.tf │ │ ├── data.google_vertex_ai_endpoint_iam_policy.tf │ │ ├── google_billing_account_iam_binding.tf │ │ ├── google_billing_account_iam_member.tf │ │ ├── google_billing_account_iam_policy.tf │ │ ├── google_billing_budget.tf │ │ ├── google_billing_project_info.tf │ │ ├── google_billing_subaccount.tf │ │ ├── google_project.tf │ │ ├── google_project_access_approval_settings.tf │ │ ├── google_project_iam_member_remove.tf │ │ └── google_project_organization_policy.tf │ ├── google_access_context_manager_access_level.tf │ ├── google_access_context_manager_access_levels.tf │ ├── google_access_context_manager_access_policy.tf │ ├── google_access_context_manager_access_policy_iam_binding.tf │ ├── google_access_context_manager_access_policy_iam_member.tf │ ├── google_access_context_manager_access_policy_iam_policy.tf │ ├── google_access_context_manager_authorized_orgs_desc.tf │ ├── google_access_context_manager_gcp_user_access_binding.tf │ ├── google_access_context_manager_service_perimeter.tf │ ├── google_access_context_manager_service_perimeters.tf │ ├── google_alloydb_backup.tf │ ├── google_alloydb_cluster.tf │ ├── google_alloydb_instance.tf │ ├── google_alloydb_user.tf │ ├── google_api_gateway_api.tf │ ├── google_api_gateway_api_config.tf │ ├── google_api_gateway_api_config_iam_binding.tf │ ├── google_api_gateway_api_config_iam_member.tf │ ├── google_api_gateway_api_config_iam_policy.tf │ ├── google_api_gateway_api_iam_binding.tf │ ├── google_api_gateway_api_iam_member.tf │ ├── google_api_gateway_api_iam_policy.tf │ ├── google_api_gateway_gateway.tf │ ├── google_api_gateway_gateway_iam_binding.tf │ ├── google_api_gateway_gateway_iam_member.tf │ ├── google_api_gateway_gateway_iam_policy.tf │ ├── google_apigee_environment_iam_binding.tf │ ├── google_apigee_environment_iam_member.tf │ ├── google_apigee_environment_iam_policy.tf │ ├── google_apihub_api_hub_instance.tf │ ├── google_apihub_curation.tf │ ├── google_apihub_host_project_registration.tf │ ├── google_apihub_plugin.tf │ ├── google_apihub_plugin_instance.tf │ ├── google_apphub_application.tf │ ├── google_apphub_service.tf │ ├── google_apphub_service_project_attachment.tf │ ├── google_apphub_workload.tf │ ├── google_artifact_registry_repository.tf │ ├── google_artifact_registry_repository_iam_binding.tf │ ├── google_artifact_registry_repository_iam_member.tf │ ├── google_artifact_registry_repository_iam_policy.tf │ ├── google_backup_dr_backup_plan.tf │ ├── google_backup_dr_backup_plan_association.tf │ ├── google_backup_dr_backup_vault.tf │ ├── google_backup_dr_management_server.tf │ ├── google_backup_dr_service_config.tf │ ├── google_beyondcorp_app_connection.tf │ ├── google_beyondcorp_app_connector.tf │ ├── google_beyondcorp_app_gateway.tf │ ├── google_beyondcorp_application.tf │ ├── google_beyondcorp_application_iam_binding.tf │ ├── google_beyondcorp_application_iam_member.tf │ ├── google_beyondcorp_application_iam_policy.tf │ ├── google_beyondcorp_security_gateway.tf │ ├── google_beyondcorp_security_gateway_application.tf │ ├── google_beyondcorp_security_gateway_application_iam_binding.tf │ ├── google_beyondcorp_security_gateway_application_iam_member.tf │ ├── google_beyondcorp_security_gateway_application_iam_policy.tf │ ├── google_beyondcorp_security_gateway_iam_binding.tf │ ├── google_beyondcorp_security_gateway_iam_member.tf │ ├── google_beyondcorp_security_gateway_iam_policy.tf │ ├── google_biglake_catalog.tf │ ├── google_biglake_database.tf │ ├── google_biglake_table.tf │ ├── google_bigquery_analytics_hub_data_exchange.tf │ ├── google_bigquery_analytics_hub_data_exchange_iam_binding.tf │ ├── google_bigquery_analytics_hub_data_exchange_iam_member.tf │ ├── google_bigquery_analytics_hub_data_exchange_iam_policy.tf │ ├── google_bigquery_analytics_hub_listing.tf │ ├── google_bigquery_analytics_hub_listing_iam_binding.tf │ ├── google_bigquery_analytics_hub_listing_iam_member.tf │ ├── google_bigquery_analytics_hub_listing_iam_policy.tf │ ├── google_bigquery_analytics_hub_listing_subscription.tf │ ├── google_bigquery_bi_reservation.tf │ ├── google_bigquery_capacity_commitment.tf │ ├── google_bigquery_connection.tf │ ├── google_bigquery_connection_iam_binding.tf │ ├── google_bigquery_connection_iam_member.tf │ ├── google_bigquery_connection_iam_policy.tf │ ├── google_bigquery_data_transfer_config.tf │ ├── google_bigquery_datapolicy_data_policy.tf │ ├── google_bigquery_datapolicy_data_policy_iam_binding.tf │ ├── google_bigquery_datapolicy_data_policy_iam_member.tf │ ├── google_bigquery_datapolicy_data_policy_iam_policy.tf │ ├── google_bigquery_dataset.tf │ ├── google_bigquery_dataset_access.tf │ ├── google_bigquery_dataset_iam_binding.tf │ ├── google_bigquery_dataset_iam_member.tf │ ├── google_bigquery_dataset_iam_policy.tf │ ├── google_bigquery_job.tf │ ├── google_bigquery_reservation.tf │ ├── google_bigquery_reservation_assignment.tf │ ├── google_bigquery_routine.tf │ ├── google_bigquery_row_access_policy.tf │ ├── google_bigquery_table.tf │ ├── google_bigquery_table_iam_binding.tf │ ├── google_bigquery_table_iam_member.tf │ ├── google_bigquery_table_iam_policy.tf │ ├── google_bigtable_app_profile.tf │ ├── google_bigtable_authorized_view.tf │ ├── google_bigtable_gc_policy.tf │ ├── google_bigtable_instance.tf │ ├── google_bigtable_logical_view.tf │ ├── google_bigtable_materialized_view.tf │ ├── google_bigtable_schema_bundle.tf │ ├── google_bigtable_table.tf │ ├── google_bigtable_table_iam_binding.tf │ ├── google_bigtable_table_iam_member.tf │ ├── google_bigtable_table_iam_policy.tf │ ├── google_billing_account_iam_binding.tf │ ├── google_billing_account_iam_member.tf │ ├── google_billing_account_iam_policy.tf │ ├── google_billing_budget.tf │ ├── google_billing_project_info.tf │ ├── google_binary_authorization_attestor_iam_binding.tf │ ├── google_binary_authorization_attestor_iam_member.tf │ ├── google_binary_authorization_attestor_iam_policy.tf │ ├── google_bogus.pike.tf │ ├── google_certificate_manager_dns_authorization.tf │ ├── google_chronicle_data_access_label.tf │ ├── google_chronicle_data_access_scope.tf │ ├── google_chronicle_reference_list.tf │ ├── google_chronicle_retrohunt.tf │ ├── google_chronicle_rule.tf │ ├── google_chronicle_rule_deployment.tf │ ├── google_chronicle_watchlist.tf │ ├── google_cloud_run_domain_mapping.tf │ ├── google_cloud_run_service.tf │ ├── google_cloud_run_service_iam_binding.tf │ ├── google_cloud_run_service_iam_member.tf │ ├── google_cloud_run_service_iam_policy.tf │ ├── google_cloud_run_v2_job.tf │ ├── google_cloud_run_v2_job_iam_binding.tf │ ├── google_cloud_run_v2_job_iam_member.tf │ ├── google_cloud_run_v2_job_iam_policy.tf │ ├── google_cloud_run_v2_service.tf │ ├── google_cloud_run_v2_service_iam_binding.tf │ ├── google_cloud_run_v2_service_iam_member.tf │ ├── google_cloud_run_v2_service_iam_policy.tf │ ├── google_cloud_run_v2_worker_pool.tf │ ├── google_cloud_run_v2_worker_pool_iam_binding.tf │ ├── google_cloud_run_v2_worker_pool_iam_member.tf │ ├── google_cloud_run_v2_worker_pool_iam_policy.tf │ ├── google_cloud_scheduler_job.tf │ ├── google_cloud_tasks_queue_iam_binding.tf │ ├── google_cloud_tasks_queue_iam_member.tf │ ├── google_cloud_tasks_queue_iam_policy.tf │ ├── google_cloudbuild_trigger.tf │ ├── google_cloudbuildv2_connection.tf │ ├── google_cloudbuildv2_connection_iam_binding.tf │ ├── google_cloudbuildv2_connection_iam_member.tf │ ├── google_cloudbuildv2_connection_iam_policy.tf │ ├── google_cloudbuildv2_repository.tf │ ├── google_clouddeploy_custom_target_type_iam_binding.tf │ ├── google_clouddeploy_custom_target_type_iam_member.tf │ ├── google_clouddeploy_custom_target_type_iam_policy.tf │ ├── google_clouddeploy_delivery_pipeline_iam_binding.tf │ ├── google_clouddeploy_delivery_pipeline_iam_member.tf │ ├── google_clouddeploy_delivery_pipeline_iam_policy.tf │ ├── google_clouddeploy_target_iam_binding.tf │ ├── google_clouddeploy_target_iam_member.tf │ ├── google_clouddeploy_target_iam_policy.tf │ ├── google_cloudfunctions2_function.tf │ ├── google_cloudfunctions2_function_iam_binding.tf │ ├── google_cloudfunctions2_function_iam_member.tf │ ├── google_cloudfunctions2_function_iam_policy.tf │ ├── google_cloudfunctions_function.tf │ ├── google_cloudfunctions_function_iam_binding.tf │ ├── google_cloudfunctions_function_iam_member.invoker.tf │ ├── google_cloudfunctions_function_iam_policy.tf │ ├── google_colab_runtime_template_iam_binding.tf │ ├── google_colab_runtime_template_iam_member.tf │ ├── google_colab_runtime_template_iam_policy.tf │ ├── google_composer_environment.tf │ ├── google_composer_user_workloads_config_map.tf │ ├── google_composer_user_workloads_secret.tf │ ├── google_compute_address.static.tf │ ├── google_compute_backend_bucket_iam_binding.tf │ ├── google_compute_backend_bucket_iam_member.tf │ ├── google_compute_backend_bucket_iam_policy.tf │ ├── google_compute_backend_service.tf │ ├── google_compute_backend_service_iam_binding.tf │ ├── google_compute_backend_service_iam_member.tf │ ├── google_compute_backend_service_iam_policy.tf │ ├── google_compute_disk_iam_binding.tf │ ├── google_compute_disk_iam_member.tf │ ├── google_compute_disk_iam_policy.tf │ ├── google_compute_firewall.ssh-bastion.tf │ ├── google_compute_forwarding_rule.tf │ ├── google_compute_global_address.private_ip_address.tf │ ├── google_compute_global_forwarding_rule.tf │ ├── google_compute_global_network_endpoint_group.tf │ ├── google_compute_health_check.tf │ ├── google_compute_http_health_check.tf │ ├── google_compute_https_health_check.tf │ ├── google_compute_image_iam_binding.tf │ ├── google_compute_image_iam_member.tf │ ├── google_compute_image_iam_policy.tf │ ├── google_compute_instance.tf │ ├── google_compute_instance_iam_binding.tf │ ├── google_compute_instance_iam_member.tf │ ├── google_compute_instance_iam_policy.tf │ ├── google_compute_instance_template.tf │ ├── google_compute_instance_template_iam_binding.tf │ ├── google_compute_instance_template_iam_member.tf │ ├── google_compute_instance_template_iam_policy.tf │ ├── google_compute_instant_snapshot_iam_binding.tf │ ├── google_compute_instant_snapshot_iam_member.tf │ ├── google_compute_instant_snapshot_iam_policy.tf │ ├── google_compute_machine_image_iam_binding.tf │ ├── google_compute_machine_image_iam_member.tf │ ├── google_compute_machine_image_iam_policy.tf │ ├── google_compute_network.tf │ ├── google_compute_network_attachment.tf │ ├── google_compute_network_endpoint_group.tf │ ├── google_compute_project_metadata_item.tf │ ├── google_compute_region_backend_service.tf │ ├── google_compute_region_backend_service_iam_binding.tf │ ├── google_compute_region_backend_service_iam_member.tf │ ├── google_compute_region_backend_service_iam_policy.tf │ ├── google_compute_region_disk_iam_binding.tf │ ├── google_compute_region_disk_iam_member.tf │ ├── google_compute_region_disk_iam_policy.tf │ ├── google_compute_region_health_check.tf │ ├── google_compute_region_network_endpoint_group.tf │ ├── google_compute_region_ssl_certificate.tf │ ├── google_compute_region_target_http_proxy.tf │ ├── google_compute_region_target_https_proxy.tf │ ├── google_compute_region_target_tcp_proxy.tf │ ├── google_compute_region_url_map.tf │ ├── google_compute_security_policy.tf │ ├── google_compute_snapshot_iam_binding.tf │ ├── google_compute_snapshot_iam_member.tf │ ├── google_compute_snapshot_iam_policy.tf │ ├── google_compute_storage_pool_iam_binding.tf │ ├── google_compute_storage_pool_iam_member.tf │ ├── google_compute_storage_pool_iam_policy.tf │ ├── google_compute_subnetwork.tf │ ├── google_compute_subnetwork_iam_binding.tf │ ├── google_compute_subnetwork_iam_member.tf │ ├── google_compute_subnetwork_iam_policy.tf │ ├── google_compute_target_http_proxy.tf │ ├── google_compute_target_https_proxy.tf │ ├── google_compute_url_map.tf │ ├── google_contact_center_insights_analysis_rule.tf │ ├── google_contact_center_insights_view.tf │ ├── google_container_analysis_note_iam_binding.tf │ ├── google_container_analysis_note_iam_member.tf │ ├── google_container_analysis_note_iam_policy.tf │ ├── google_container_cluster.tf │ ├── google_container_node_pool.tf │ ├── google_data_catalog_entry.tf │ ├── google_data_catalog_entry_group.tf │ ├── google_data_catalog_entry_group_iam_binding.tf │ ├── google_data_catalog_entry_group_iam_member.tf │ ├── google_data_catalog_entry_group_iam_policy.tf │ ├── google_data_catalog_policy_tag.tf │ ├── google_data_catalog_policy_tag_iam_binding.tf │ ├── google_data_catalog_policy_tag_iam_member.tf │ ├── google_data_catalog_policy_tag_iam_policy.tf │ ├── google_data_catalog_tag.tf │ ├── google_data_catalog_tag_template.tf │ ├── google_data_catalog_tag_template_iam_binding.tf │ ├── google_data_catalog_tag_template_iam_member.tf │ ├── google_data_catalog_tag_template_iam_policy.tf │ ├── google_data_catalog_taxonomy.tf │ ├── google_data_catalog_taxonomy_iam_binding.tf │ ├── google_data_catalog_taxonomy_iam_member.tf │ ├── google_data_catalog_taxonomy_iam_policy.tf │ ├── google_data_fusion_instance_iam_binding.tf │ ├── google_data_fusion_instance_iam_member.tf │ ├── google_data_fusion_instance_iam_policy.tf │ ├── google_dataflow_job.tf │ ├── google_dataform_repository.tf │ ├── google_dataform_repository_iam_binding.tf │ ├── google_dataform_repository_iam_member.tf │ ├── google_dataform_repository_iam_policy.tf │ ├── google_dataform_repository_release_config.tf │ ├── google_dataform_repository_workflow_config.tf │ ├── google_dataplex_aspect_type.tf │ ├── google_dataplex_aspect_type_iam_binding.tf │ ├── google_dataplex_aspect_type_iam_member.tf │ ├── google_dataplex_aspect_type_iam_policy.tf │ ├── google_dataplex_asset.tf │ ├── google_dataplex_asset_iam_binding.tf │ ├── google_dataplex_asset_iam_member.tf │ ├── google_dataplex_asset_iam_policy.tf │ ├── google_dataplex_datascan.tf │ ├── google_dataplex_datascan_iam_binding.tf │ ├── google_dataplex_datascan_iam_member.tf │ ├── google_dataplex_datascan_iam_policy.tf │ ├── google_dataplex_entry.tf │ ├── google_dataplex_entry_group.tf │ ├── google_dataplex_entry_group_iam_binding.tf │ ├── google_dataplex_entry_group_iam_member.tf │ ├── google_dataplex_entry_group_iam_policy.tf │ ├── google_dataplex_entry_type.tf │ ├── google_dataplex_entry_type_iam_binding.tf │ ├── google_dataplex_entry_type_iam_member.tf │ ├── google_dataplex_entry_type_iam_policy.tf │ ├── google_dataplex_glossary.tf │ ├── google_dataplex_glossary_category.tf │ ├── google_dataplex_glossary_iam_binding.tf │ ├── google_dataplex_glossary_iam_member.tf │ ├── google_dataplex_glossary_iam_policy.tf │ ├── google_dataplex_glossary_term.tf │ ├── google_dataplex_lake.tf │ ├── google_dataplex_lake_iam_binding.tf │ ├── google_dataplex_lake_iam_member.tf │ ├── google_dataplex_lake_iam_policy.tf │ ├── google_dataplex_task.tf │ ├── google_dataplex_task_iam_binding.tf │ ├── google_dataplex_task_iam_member.tf │ ├── google_dataplex_task_iam_policy.tf │ ├── google_dataplex_zone.tf │ ├── google_dataplex_zone_iam_binding.tf │ ├── google_dataplex_zone_iam_member.tf │ ├── google_dataplex_zone_iam_policy.tf │ ├── google_dataproc_autoscaling_policy.tf │ ├── google_dataproc_autoscaling_policy_iam_binding.tf │ ├── google_dataproc_autoscaling_policy_iam_member.tf │ ├── google_dataproc_autoscaling_policy_iam_policy.tf │ ├── google_dataproc_batch.tf │ ├── google_dataproc_cluster.tf │ ├── google_dataproc_cluster_iam_binding.tf │ ├── google_dataproc_cluster_iam_member.tf │ ├── google_dataproc_cluster_iam_policy.tf │ ├── google_dataproc_job.tf │ ├── google_dataproc_job_iam_binding.tf │ ├── google_dataproc_job_iam_member.tf │ ├── google_dataproc_job_iam_policy.tf │ ├── google_dataproc_metastore_database_iam_binding.tf │ ├── google_dataproc_metastore_database_iam_member.tf │ ├── google_dataproc_metastore_database_iam_policy.tf │ ├── google_dataproc_metastore_federation_iam_binding.tf │ ├── google_dataproc_metastore_federation_iam_member.tf │ ├── google_dataproc_metastore_federation_iam_policy.tf │ ├── google_dataproc_metastore_service_iam_binding.tf │ ├── google_dataproc_metastore_service_iam_member.tf │ ├── google_dataproc_metastore_service_iam_policy.tf │ ├── google_dataproc_metastore_table_iam_binding.tf │ ├── google_dataproc_metastore_table_iam_member.tf │ ├── google_dataproc_metastore_table_iam_policy.tf │ ├── google_dataproc_session_template.tf │ ├── google_dataproc_workflow_template.tf │ ├── google_deployment_manager_deployment.tf │ ├── google_developer_connect_account_connector.tf │ ├── google_developer_connect_connection.tf │ ├── google_developer_connect_git_repository_link.tf │ ├── google_dialogflow_agent.tf │ ├── google_dialogflow_conversation_profile.tf │ ├── google_dialogflow_cx_agent.tf │ ├── google_dialogflow_cx_entity_type.tf │ ├── google_dialogflow_cx_environment.tf │ ├── google_dialogflow_cx_flow.tf │ ├── google_dialogflow_cx_generative_settings.tf │ ├── google_dialogflow_cx_generator.tf │ ├── google_dialogflow_cx_intent.tf │ ├── google_dialogflow_cx_page.tf │ ├── google_dialogflow_cx_playbook.tf │ ├── google_dialogflow_cx_security_settings.tf │ ├── google_dialogflow_cx_tool.tf │ ├── google_dialogflow_cx_version.tf │ ├── google_dialogflow_cx_webhook.tf │ ├── google_dialogflow_encryption_spec.tf │ ├── google_dialogflow_entity_type.tf │ ├── google_dialogflow_fulfillment.tf │ ├── google_dialogflow_intent.tf │ ├── google_dns_managed_zone.tf │ ├── google_dns_managed_zone_iam_binding.tf │ ├── google_dns_managed_zone_iam_member.tf │ ├── google_dns_managed_zone_iam_policy.tf │ ├── google_dns_policy.tf │ ├── google_dns_record_set.tf │ ├── google_edgecontainer_cluster.tf │ ├── google_edgecontainer_node_pool.tf │ ├── google_edgecontainer_vpn_connection.tf │ ├── google_edgenetwork_interconnect_attachment.tf │ ├── google_edgenetwork_network.tf │ ├── google_edgenetwork_subnet.tf │ ├── google_endpoints_service_consumers_iam_binding.tf │ ├── google_endpoints_service_consumers_iam_member.tf │ ├── google_endpoints_service_consumers_iam_policy.tf │ ├── google_endpoints_service_iam_binding.tf │ ├── google_endpoints_service_iam_member.tf │ ├── google_endpoints_service_iam_policy.tf │ ├── google_eventarc_channel.tf │ ├── google_eventarc_enrollment.tf │ ├── google_eventarc_google_api_source.tf │ ├── google_eventarc_google_channel_config.tf │ ├── google_eventarc_message_bus.tf │ ├── google_eventarc_pipeline.tf │ ├── google_eventarc_trigger.tf │ ├── google_firebase_android_app.tf │ ├── google_firebase_apple_app.tf │ ├── google_firebase_database_instance.tf │ ├── google_firebase_extensions_instance.tf │ ├── google_firebase_hosting_channel.tf │ ├── google_firebase_hosting_custom_domain.tf │ ├── google_firebase_hosting_release.tf │ ├── google_firebase_hosting_site.tf │ ├── google_firebase_hosting_version.tf │ ├── google_firebase_project.tf │ ├── google_firebase_project_location.tf │ ├── google_firebase_storage_bucket.tf │ ├── google_firebase_web_app.tf │ ├── google_firebaserules_release.tf │ ├── google_firebaserules_ruleset.tf │ ├── google_folder_iam_binding.tf │ ├── google_folder_iam_member.tf │ ├── google_folder_iam_policy.tf │ ├── google_gemini_code_repository_index.tf │ ├── google_gemini_code_tools_setting.tf │ ├── google_gemini_code_tools_setting_binding.tf │ ├── google_gemini_data_sharing_with_google_setting.tf │ ├── google_gemini_data_sharing_with_google_setting_binding.tf │ ├── google_gemini_gemini_gcp_enablement_setting.tf │ ├── google_gemini_gemini_gcp_enablement_setting_binding.tf │ ├── google_gemini_logging_setting.tf │ ├── google_gemini_logging_setting_binding.tf │ ├── google_gemini_release_channel_setting.tf │ ├── google_gemini_release_channel_setting_binding.tf │ ├── google_gemini_repository_group.tf │ ├── google_gemini_repository_group_iam_binding.tf │ ├── google_gemini_repository_group_iam_member.tf │ ├── google_gemini_repository_group_iam_policy.tf │ ├── google_gke_backup_backup_plan_iam_binding.tf │ ├── google_gke_backup_backup_plan_iam_member.tf │ ├── google_gke_backup_backup_plan_iam_policy.tf │ ├── google_gke_backup_restore_plan_iam_binding.tf │ ├── google_gke_backup_restore_plan_iam_member.tf │ ├── google_gke_backup_restore_plan_iam_policy.tf │ ├── google_gke_hub_feature_iam_binding.tf │ ├── google_gke_hub_feature_iam_member.tf │ ├── google_gke_hub_feature_iam_policy.tf │ ├── google_gke_hub_membership_iam_binding.tf │ ├── google_gke_hub_membership_iam_member.tf │ ├── google_gke_hub_membership_iam_policy.tf │ ├── google_gke_hub_scope_iam_binding.tf │ ├── google_gke_hub_scope_iam_member.tf │ ├── google_gke_hub_scope_iam_policy.tf │ ├── google_healthcare_consent_store_iam_binding.tf │ ├── google_healthcare_consent_store_iam_member.tf │ ├── google_healthcare_consent_store_iam_policy.tf │ ├── google_healthcare_dataset_iam_binding.tf │ ├── google_healthcare_dataset_iam_member.tf │ ├── google_healthcare_dataset_iam_policy.tf │ ├── google_healthcare_dicom_store_iam_binding.tf │ ├── google_healthcare_dicom_store_iam_member.tf │ ├── google_healthcare_dicom_store_iam_policy.tf │ ├── google_healthcare_fhir_store_iam_binding.tf │ ├── google_healthcare_fhir_store_iam_member.tf │ ├── google_healthcare_fhir_store_iam_policy.tf │ ├── google_healthcare_hl7_v2_store_iam_binding.tf │ ├── google_healthcare_hl7_v2_store_iam_member.tf │ ├── google_healthcare_hl7_v2_store_iam_policy.tf │ ├── google_iam_workforce_pool.tf │ ├── google_iam_workforce_pool_iam_binding.tf │ ├── google_iam_workforce_pool_iam_member.tf │ ├── google_iam_workforce_pool_iam_policy.tf │ ├── google_iam_workforce_pool_provider.tf │ ├── google_iam_workforce_pool_provider_key.tf │ ├── google_iam_workload_identity_pool.tf │ ├── google_iam_workload_identity_pool_iam_binding.tf │ ├── google_iam_workload_identity_pool_iam_member.tf │ ├── google_iam_workload_identity_pool_iam_policy.tf │ ├── google_iam_workload_identity_pool_provider.tf │ ├── google_iap_app_engine_service_iam_binding.tf │ ├── google_iap_app_engine_service_iam_member.tf │ ├── google_iap_app_engine_service_iam_policy.tf │ ├── google_iap_app_engine_version_iam_binding.tf │ ├── google_iap_app_engine_version_iam_member.tf │ ├── google_iap_app_engine_version_iam_policy.tf │ ├── google_iap_brand.tf │ ├── google_iap_client.tf │ ├── google_iap_settings.tf │ ├── google_iap_tunnel_dest_group.tf │ ├── google_iap_tunnel_dest_group_iam_binding.tf │ ├── google_iap_tunnel_dest_group_iam_member.tf │ ├── google_iap_tunnel_dest_group_iam_policy.tf │ ├── google_iap_tunnel_iam_binding.tf │ ├── google_iap_tunnel_iam_member.tf │ ├── google_iap_tunnel_iam_policy.tf │ ├── google_iap_tunnel_instance_iam_binding.tf │ ├── google_iap_tunnel_instance_iam_member.tf │ ├── google_iap_tunnel_instance_iam_policy.tf │ ├── google_iap_web_backend_service_iam_binding.tf │ ├── google_iap_web_backend_service_iam_member.tf │ ├── google_iap_web_backend_service_iam_policy.tf │ ├── google_iap_web_cloud_run_service_iam_binding.tf │ ├── google_iap_web_cloud_run_service_iam_member.tf │ ├── google_iap_web_cloud_run_service_iam_policy.tf │ ├── google_iap_web_forwarding_rule_service_iam_binding.tf │ ├── google_iap_web_forwarding_rule_service_iam_member.tf │ ├── google_iap_web_forwarding_rule_service_iam_policy.tf │ ├── google_iap_web_iam_binding.tf │ ├── google_iap_web_iam_member.tf │ ├── google_iap_web_iam_policy.tf │ ├── google_iap_web_region_backend_service_iam_binding.tf │ ├── google_iap_web_region_backend_service_iam_member.tf │ ├── google_iap_web_region_backend_service_iam_policy.tf │ ├── google_iap_web_region_forwarding_rule_service_iam_binding.tf │ ├── google_iap_web_region_forwarding_rule_service_iam_member.tf │ ├── google_iap_web_region_forwarding_rule_service_iam_policy.tf │ ├── google_iap_web_type_app_engine_iam_binding.tf │ ├── google_iap_web_type_app_engine_iam_member.tf │ ├── google_iap_web_type_app_engine_iam_policy.tf │ ├── google_iap_web_type_compute_iam_binding.tf │ ├── google_iap_web_type_compute_iam_member.tf │ ├── google_iap_web_type_compute_iam_policy.tf │ ├── google_kms_crypto_key.tf │ ├── google_kms_crypto_key_iam_binding.tf │ ├── google_kms_crypto_key_iam_member.tf │ ├── google_kms_crypto_key_iam_policy.tf │ ├── google_kms_crypto_key_version.tf │ ├── google_kms_ekm_connection_iam_binding.tf │ ├── google_kms_ekm_connection_iam_member.tf │ ├── google_kms_ekm_connection_iam_policy.tf │ ├── google_kms_key_handle.tf │ ├── google_kms_key_ring.tf │ ├── google_kms_key_ring_iam_binding.tf │ ├── google_kms_key_ring_iam_member.tf │ ├── google_kms_key_ring_iam_policy.tf │ ├── google_kms_key_ring_import_job.tf │ ├── google_kms_secret_ciphertext.tf │ ├── google_logging_billing_account_exclusion.tf │ ├── google_logging_billing_account_sink.tf │ ├── google_logging_folder_exclusion.tf │ ├── google_logging_folder_settings.tf │ ├── google_logging_folder_sink.tf │ ├── google_logging_linked_dataset.tf │ ├── google_logging_log_scope.tf │ ├── google_logging_log_view.tf │ ├── google_logging_log_view_iam_binding.tf │ ├── google_logging_log_view_iam_member.tf │ ├── google_logging_log_view_iam_policy.tf │ ├── google_logging_metric.tf │ ├── google_logging_organization_exclusion.tf │ ├── google_logging_organization_settings.tf │ ├── google_logging_organization_sink.tf │ ├── google_logging_project_exclusion.tf │ ├── google_logging_project_sink.tf │ ├── google_managed_kafka_acl.tf │ ├── google_managed_kafka_cluster.tf │ ├── google_managed_kafka_connect_cluster.tf │ ├── google_managed_kafka_connector.tf │ ├── google_managed_kafka_topic.tf │ ├── google_memcache_instance.tf │ ├── google_memorystore_instance.tf │ ├── google_model_armor_floorsetting.tf │ ├── google_model_armor_template.tf │ ├── google_monitoring_alert_policy.tf │ ├── google_monitoring_custom_service.tf │ ├── google_monitoring_dashboard.tf │ ├── google_monitoring_group.tf │ ├── google_monitoring_metric_descriptor.tf │ ├── google_monitoring_monitored_project.tf │ ├── google_monitoring_notification_channel.tf │ ├── google_monitoring_service.tf │ ├── google_monitoring_slo.tf │ ├── google_monitoring_uptime_check_config.tf │ ├── google_network_security_address_group_iam_binding.tf │ ├── google_network_security_address_group_iam_member.tf │ ├── google_network_security_address_group_iam_policy.tf │ ├── google_notebooks_environment.tf │ ├── google_notebooks_instance.tf │ ├── google_notebooks_instance_iam_binding.tf │ ├── google_notebooks_instance_iam_member.tf │ ├── google_notebooks_instance_iam_policy.tf │ ├── google_notebooks_runtime.tf │ ├── google_notebooks_runtime_iam_binding.tf │ ├── google_notebooks_runtime_iam_member.tf │ ├── google_notebooks_runtime_iam_policy.tf │ ├── google_organization_iam_binding.tf │ ├── google_organization_iam_member.tf │ ├── google_organization_iam_policy.tf │ ├── google_os_config_guest_policies.tf │ ├── google_os_config_os_policy_assignment.tf │ ├── google_os_config_patch_deployment.tf │ ├── google_os_config_v2_policy_orchestrator.tf │ ├── google_os_config_v2_policy_orchestrator_for_folder.tf │ ├── google_os_config_v2_policy_orchestrator_for_organization.tf │ ├── google_parallelstore_instance.tf │ ├── google_privateca_ca_pool.tf │ ├── google_privateca_ca_pool_iam_binding.tf │ ├── google_privateca_ca_pool_iam_member.tf │ ├── google_privateca_ca_pool_iam_policy.tf │ ├── google_privateca_certificate.tf │ ├── google_privateca_certificate_authority.tf │ ├── google_privateca_certificate_template.tf │ ├── google_privateca_certificate_template_iam_binding.tf │ ├── google_privateca_certificate_template_iam_member.tf │ ├── google_privateca_certificate_template_iam_policy.tf │ ├── google_privileged_access_manager_entitlement.tf │ ├── google_project.tf │ ├── google_project_access_approval_settings.tf │ ├── google_project_default_service_accounts.tf │ ├── google_project_iam_audit_config.tf │ ├── google_project_iam_binding.tf │ ├── google_project_iam_custom_role.tf │ ├── google_project_iam_member.tf │ ├── google_project_iam_member_remove.tf │ ├── google_project_iam_policy.tf │ ├── google_project_organization_policy.tf │ ├── google_project_service.tf │ ├── google_project_service_identity.tf │ ├── google_project_services.tf │ ├── google_project_usage_export_bucket.tf │ ├── google_pubsub_lite_reservation.tf │ ├── google_pubsub_lite_subscription.tf │ ├── google_pubsub_lite_topic.tf │ ├── google_pubsub_schema.tf │ ├── google_pubsub_schema_iam_binding.tf │ ├── google_pubsub_schema_iam_member.tf │ ├── google_pubsub_schema_iam_policy.tf │ ├── google_pubsub_subscription.tf │ ├── google_pubsub_subscription_iam_binding.tf │ ├── google_pubsub_subscription_iam_member.tf │ ├── google_pubsub_subscription_iam_policy.tf │ ├── google_pubsub_topic.tf │ ├── google_pubsub_topic_iam_binding.tf │ ├── google_pubsub_topic_iam_member.tf │ ├── google_pubsub_topic_iam_policy.tf │ ├── google_redis_cluster.tf │ ├── google_redis_cluster_user_created_connections.tf │ ├── google_redis_instance.tf │ ├── google_runtimeconfig_config.tf │ ├── google_runtimeconfig_config_iam_binding.tf │ ├── google_runtimeconfig_config_iam_member.tf │ ├── google_runtimeconfig_config_iam_policy.tf │ ├── google_runtimeconfig_variable.tf │ ├── google_scc_source_iam_binding.tf │ ├── google_scc_source_iam_member.tf │ ├── google_scc_source_iam_policy.tf │ ├── google_scc_v2_organization_source_iam_binding.tf │ ├── google_scc_v2_organization_source_iam_member.tf │ ├── google_scc_v2_organization_source_iam_policy.tf │ ├── google_secret_manager_regional_secret.tf │ ├── google_secret_manager_regional_secret_iam_binding.tf │ ├── google_secret_manager_regional_secret_iam_member.tf │ ├── google_secret_manager_regional_secret_iam_policy.tf │ ├── google_secret_manager_regional_secret_version.tf │ ├── google_secret_manager_secret.tf │ ├── google_secret_manager_secret_iam_binding.tf │ ├── google_secret_manager_secret_iam_member.tf │ ├── google_secret_manager_secret_iam_policy.tf │ ├── google_secret_manager_secret_version.tf │ ├── google_secure_source_manager_branch_rule.tf │ ├── google_secure_source_manager_instance.tf │ ├── google_secure_source_manager_instance_iam_binding.tf │ ├── google_secure_source_manager_instance_iam_member.tf │ ├── google_secure_source_manager_instance_iam_policy.tf │ ├── google_secure_source_manager_repository.tf │ ├── google_secure_source_manager_repository_iam_binding.tf │ ├── google_secure_source_manager_repository_iam_member.tf │ ├── google_secure_source_manager_repository_iam_policy.tf │ ├── google_service_account.default.tf │ ├── google_service_account.tf │ ├── google_service_account_iam_binding.tf │ ├── google_service_account_iam_member.tf │ ├── google_service_account_iam_policy.tf │ ├── google_service_account_key.tf │ ├── google_service_directory_endpoint.tf │ ├── google_service_directory_namespace.tf │ ├── google_service_directory_namespace_iam_binding.tf │ ├── google_service_directory_namespace_iam_member.tf │ ├── google_service_directory_namespace_iam_policy.tf │ ├── google_service_directory_service.tf │ ├── google_service_directory_service_iam_binding.tf │ ├── google_service_directory_service_iam_member.tf │ ├── google_service_directory_service_iam_policy.tf │ ├── google_service_networking_connection.private_vpc_connection.tf │ ├── google_site_verification_owner.tf │ ├── google_site_verification_web_resource.tf │ ├── google_sourcerepo_repository.tf │ ├── google_sourcerepo_repository_iam_binding.tf │ ├── google_sourcerepo_repository_iam_member.tf │ ├── google_sourcerepo_repository_iam_policy.tf │ ├── google_spanner_backup_schedule.tf │ ├── google_spanner_database.tf │ ├── google_spanner_database_iam_binding.tf │ ├── google_spanner_database_iam_member.tf │ ├── google_spanner_database_iam_policy.tf │ ├── google_spanner_instance.tf │ ├── google_spanner_instance_config.tf │ ├── google_spanner_instance_iam_binding.tf │ ├── google_spanner_instance_iam_member.tf │ ├── google_spanner_instance_iam_policy.tf │ ├── google_spanner_instance_partition.tf │ ├── google_sql_database.tf │ ├── google_sql_database_instance.tf │ ├── google_sql_ssl_cert.tf │ ├── google_sql_user.tf │ ├── google_storage_bucket.tf │ ├── google_storage_bucket_access_control.tf │ ├── google_storage_bucket_acl.bucket-acl.tf │ ├── google_storage_bucket_iam_binding.binding.tf │ ├── google_storage_bucket_iam_member.tf │ ├── google_storage_bucket_iam_policy.tf │ ├── google_storage_bucket_object.tf │ ├── google_storage_control_folder_intelligence_config.tf │ ├── google_storage_control_organization_intelligence_config.tf │ ├── google_storage_control_project_intelligence_config.tf │ ├── google_storage_default_object_access_control.tf │ ├── google_storage_default_object_acl.tf │ ├── google_storage_hmac_key.tf │ ├── google_storage_insights_dataset_config.tf │ ├── google_storage_insights_report_config.tf │ ├── google_storage_managed_folder_iam_binding.tf │ ├── google_storage_managed_folder_iam_member.tf │ ├── google_storage_managed_folder_iam_policy.tf │ ├── google_storage_object_access_control.tf │ ├── google_tags_location_tag_binding.tf │ ├── google_tags_tag_binding.tf │ ├── google_tags_tag_key.tf │ ├── google_tags_tag_key_iam_binding.tf │ ├── google_tags_tag_key_iam_member.tf │ ├── google_tags_tag_key_iam_policy.tf │ ├── google_tags_tag_value.tf │ ├── google_tags_tag_value_iam_binding.tf │ ├── google_tags_tag_value_iam_member.tf │ ├── google_tags_tag_value_iam_policy.tf │ ├── google_tpu_node.tf │ ├── google_tpu_v2_queued_resource.tf │ ├── google_tpu_v2_vm.tf │ ├── google_transcoder_job.tf │ ├── google_transcoder_job_template.tf │ ├── google_vertex_ai_cache_config.tf │ ├── google_vertex_ai_dataset.tf │ ├── google_vertex_ai_deployment_resource_pool.tf │ ├── google_vertex_ai_endpoint.tf │ ├── google_vertex_ai_endpoint_iam_binding.tf │ ├── google_vertex_ai_endpoint_iam_member.tf │ ├── google_vertex_ai_endpoint_iam_policy.tf │ ├── google_vertex_ai_endpoint_with_model_garden_deployment.tf │ ├── google_vertex_ai_feature_group.tf │ ├── google_vertex_ai_feature_group_feature.tf │ ├── google_vertex_ai_feature_group_iam_binding.tf │ ├── google_vertex_ai_feature_group_iam_member.tf │ ├── google_vertex_ai_feature_group_iam_policy.tf │ ├── google_vertex_ai_feature_online_store.tf │ ├── google_vertex_ai_feature_online_store_featureview.tf │ ├── google_vertex_ai_feature_online_store_featureview_iam_binding.tf │ ├── google_vertex_ai_feature_online_store_featureview_iam_member.tf │ ├── google_vertex_ai_feature_online_store_featureview_iam_policy.tf │ ├── google_vertex_ai_feature_online_store_iam_binding.tf │ ├── google_vertex_ai_feature_online_store_iam_member.tf │ ├── google_vertex_ai_feature_online_store_iam_policy.tf │ ├── google_vertex_ai_featurestore.tf │ ├── google_vertex_ai_featurestore_entitytype.tf │ ├── google_vertex_ai_featurestore_entitytype_feature.tf │ ├── google_vertex_ai_featurestore_entitytype_iam_binding.tf │ ├── google_vertex_ai_featurestore_entitytype_iam_member.tf │ ├── google_vertex_ai_featurestore_entitytype_iam_policy.tf │ ├── google_vertex_ai_featurestore_iam_binding.tf │ ├── google_vertex_ai_featurestore_iam_member.tf │ ├── google_vertex_ai_featurestore_iam_policy.tf │ ├── google_vertex_ai_index.tf │ ├── google_vertex_ai_index_endpoint.tf │ ├── google_vertex_ai_index_endpoint_deployed_index.tf │ ├── google_vertex_ai_metadata_store.tf │ ├── google_vertex_ai_rag_engine_config.tf │ ├── google_vertex_ai_reasoning_engine.tf │ ├── google_vertex_ai_tensorboard.tf │ ├── google_vmwareengine_cluster.tf │ ├── google_vmwareengine_external_access_rule.tf │ ├── google_vmwareengine_external_address.tf │ ├── google_vmwareengine_network.tf │ ├── google_vmwareengine_network_peering.tf │ ├── google_vmwareengine_network_policy.tf │ ├── google_vmwareengine_private_cloud.tf │ ├── google_vmwareengine_subnet.tf │ ├── google_vpc_access_connector.tf │ ├── google_workbench_instance.tf │ ├── google_workbench_instance_iam_binding.tf │ ├── google_workbench_instance_iam_member.tf │ ├── google_workbench_instance_iam_policy.tf │ ├── google_workflows_workflow.tf │ ├── google_workstations_workstation.tf │ ├── google_workstations_workstation_cluster.tf │ ├── google_workstations_workstation_config.tf │ ├── google_workstations_workstation_config_iam_binding.tf │ ├── google_workstations_workstation_config_iam_member.tf │ ├── google_workstations_workstation_config_iam_policy.tf │ ├── google_workstations_workstation_iam_binding.tf │ ├── google_workstations_workstation_iam_membe.tf │ ├── google_workstations_workstation_iam_policy.tf │ ├── local.tf │ ├── main_test.zip │ ├── self-signed-cert.sh │ └── spec2.0.yaml │ ├── google_apigee_environment.tf │ ├── provider.google.tf │ ├── role │ ├── Makefile │ ├── google_project_iam_binding.tf │ ├── google_project_iam_custom_role.tf │ ├── google_project_service.tf │ ├── google_service_account.tf │ ├── google_storage_bucket.tf │ ├── output.tf │ ├── provider.gcp.tf │ └── terraform.tf │ ├── terraform.tf │ └── variables.tf ├── test ├── DATASOURCE_REQUIREMENTS.md └── datasource_samples │ ├── README.md │ ├── azurerm_api_management.json │ ├── azurerm_key_vault.json │ ├── azurerm_storage_account.json │ └── azurerm_subnet.json └── testdata ├── data └── google_clouddeploy_delivery_pipeline_iam_policy.tf ├── mixed ├── aws_instance.tf └── google_compute_instance.tf ├── modules ├── aws_s3_bucket.pike.tf └── examples │ ├── local │ └── module.local.tf │ ├── notlocal │ └── module.local.tf │ └── rubbish │ └── module.local.tf ├── readme ├── empty │ └── Readme.md ├── exists-notags │ ├── Readme.md │ └── aws_s3_bucket.pass.tf └── exists │ ├── README.md │ └── aws_s3_bucket.pass.tf └── scan └── examples ├── notlocal └── module.tf └── simple └── aws_s3_bucket.pike.tf /.checkov.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/.checkov.yaml -------------------------------------------------------------------------------- /.depguard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/.depguard.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/.github/workflows/pr.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/resources.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/.github/workflows/resources.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/.gitignore -------------------------------------------------------------------------------- /.goreleaser.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/.goreleaser.yml -------------------------------------------------------------------------------- /.markdownlint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/.markdownlint.json -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.pre-commit-hooks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/.pre-commit-hooks.yaml -------------------------------------------------------------------------------- /.run/invoke.run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/.run/invoke.run.xml -------------------------------------------------------------------------------- /.run/scan aws.run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/.run/scan aws.run.xml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE_SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/RELEASE_SUMMARY.md -------------------------------------------------------------------------------- /RESOURCE_SCRIPT_README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/RESOURCE_SCRIPT_README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/SECURITY.md -------------------------------------------------------------------------------- /bump.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/bump.ps1 -------------------------------------------------------------------------------- /entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/entrypoint.sh -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/go.sum -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/main.go -------------------------------------------------------------------------------- /pike.jfif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/pike.jfif -------------------------------------------------------------------------------- /release.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/release.ps1 -------------------------------------------------------------------------------- /resource.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/resource.ps1 -------------------------------------------------------------------------------- /set-version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/set-version.sh -------------------------------------------------------------------------------- /src/.depguard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/.depguard.yml -------------------------------------------------------------------------------- /src/aws.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/aws.go -------------------------------------------------------------------------------- /src/aws_datasource.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/aws_datasource.go -------------------------------------------------------------------------------- /src/aws_datasource_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/aws_datasource_test.go -------------------------------------------------------------------------------- /src/aws_iam_role.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/aws_iam_role.tf -------------------------------------------------------------------------------- /src/aws_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/aws_test.go -------------------------------------------------------------------------------- /src/azure.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/azure.go -------------------------------------------------------------------------------- /src/azure_datasource.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/azure_datasource.go -------------------------------------------------------------------------------- /src/azure_datasource_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/azure_datasource_test.go -------------------------------------------------------------------------------- /src/azure_policy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/azure_policy.go -------------------------------------------------------------------------------- /src/azure_policy_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/azure_policy_test.go -------------------------------------------------------------------------------- /src/azure_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/azure_test.go -------------------------------------------------------------------------------- /src/compare.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/compare.go -------------------------------------------------------------------------------- /src/compare_internal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/compare_internal_test.go -------------------------------------------------------------------------------- /src/compare_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/compare_test.go -------------------------------------------------------------------------------- /src/coverage/aws.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/coverage/aws.md -------------------------------------------------------------------------------- /src/coverage/azure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/coverage/azure.md -------------------------------------------------------------------------------- /src/coverage/coverage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/coverage/coverage.go -------------------------------------------------------------------------------- /src/coverage/coverage_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/coverage/coverage_test.go -------------------------------------------------------------------------------- /src/coverage/google.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/coverage/google.md -------------------------------------------------------------------------------- /src/credentials.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/credentials.go -------------------------------------------------------------------------------- /src/credentials_internal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/credentials_internal_test.go -------------------------------------------------------------------------------- /src/credentials_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/credentials_test.go -------------------------------------------------------------------------------- /src/data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/data.go -------------------------------------------------------------------------------- /src/data_internal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/data_internal_test.go -------------------------------------------------------------------------------- /src/data_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/data_test.go -------------------------------------------------------------------------------- /src/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/error.go -------------------------------------------------------------------------------- /src/error_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/error_test.go -------------------------------------------------------------------------------- /src/files.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/files.go -------------------------------------------------------------------------------- /src/files_aws.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/files_aws.go -------------------------------------------------------------------------------- /src/files_azure.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/files_azure.go -------------------------------------------------------------------------------- /src/files_azure_datasource.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/files_azure_datasource.go -------------------------------------------------------------------------------- /src/files_datasource.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/files_datasource.go -------------------------------------------------------------------------------- /src/files_gcp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/files_gcp.go -------------------------------------------------------------------------------- /src/files_gcp_datasource.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/files_gcp_datasource.go -------------------------------------------------------------------------------- /src/gcp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/gcp.go -------------------------------------------------------------------------------- /src/gcp_datasource.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/gcp_datasource.go -------------------------------------------------------------------------------- /src/gcp_datasource_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/gcp_datasource_test.go -------------------------------------------------------------------------------- /src/gcp_policy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/gcp_policy.go -------------------------------------------------------------------------------- /src/gcp_policy_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/gcp_policy_test.go -------------------------------------------------------------------------------- /src/gcp_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/gcp_test.go -------------------------------------------------------------------------------- /src/gitHub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/gitHub.go -------------------------------------------------------------------------------- /src/gitHub_internal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/gitHub_internal_test.go -------------------------------------------------------------------------------- /src/gitHub_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/gitHub_test.go -------------------------------------------------------------------------------- /src/inspect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/inspect.go -------------------------------------------------------------------------------- /src/inspect_internal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/inspect_internal_test.go -------------------------------------------------------------------------------- /src/inspect_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/inspect_test.go -------------------------------------------------------------------------------- /src/make.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/make.go -------------------------------------------------------------------------------- /src/make_internal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/make_internal_test.go -------------------------------------------------------------------------------- /src/make_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/make_test.go -------------------------------------------------------------------------------- /src/make_windows_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/make_windows_test.go -------------------------------------------------------------------------------- /src/modules.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/modules.go -------------------------------------------------------------------------------- /src/modules_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/modules_test.go -------------------------------------------------------------------------------- /src/parse/aws-members.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/parse/aws-members.json -------------------------------------------------------------------------------- /src/parse/azurerm-members.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/parse/azurerm-members.json -------------------------------------------------------------------------------- /src/parse/google-members.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/parse/google-members.json -------------------------------------------------------------------------------- /src/parse/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/parse/parse.go -------------------------------------------------------------------------------- /src/parse/parse_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/parse/parse_test.go -------------------------------------------------------------------------------- /src/parse/testdata/test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/parse/testdata/test.go -------------------------------------------------------------------------------- /src/policy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/policy.go -------------------------------------------------------------------------------- /src/policy_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/policy_test.go -------------------------------------------------------------------------------- /src/readme.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/readme.go -------------------------------------------------------------------------------- /src/readme_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/readme_test.go -------------------------------------------------------------------------------- /src/repository.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/repository.go -------------------------------------------------------------------------------- /src/repository_internal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/repository_internal_test.go -------------------------------------------------------------------------------- /src/repository_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/repository_test.go -------------------------------------------------------------------------------- /src/scan.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/scan.go -------------------------------------------------------------------------------- /src/scan_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/scan_test.go -------------------------------------------------------------------------------- /src/schema/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/schema/README.md -------------------------------------------------------------------------------- /src/schema/alexa-ask-skill.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/schema/alexa-ask-skill.json -------------------------------------------------------------------------------- /src/schema/aws-amplify-app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/schema/aws-amplify-app.json -------------------------------------------------------------------------------- /src/schema/aws-appflow-flow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/schema/aws-appflow-flow.json -------------------------------------------------------------------------------- /src/schema/aws-appmesh-mesh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/schema/aws-appmesh-mesh.json -------------------------------------------------------------------------------- /src/schema/aws-appmesh-route.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/schema/aws-appmesh-route.json -------------------------------------------------------------------------------- /src/schema/aws-appsync-api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/schema/aws-appsync-api.json -------------------------------------------------------------------------------- /src/schema/aws-aps-scraper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/schema/aws-aps-scraper.json -------------------------------------------------------------------------------- /src/schema/aws-aps-workspace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/schema/aws-aps-workspace.json -------------------------------------------------------------------------------- /src/schema/aws-b2bi-profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/schema/aws-b2bi-profile.json -------------------------------------------------------------------------------- /src/schema/aws-bedrock-agent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/schema/aws-bedrock-agent.json -------------------------------------------------------------------------------- /src/schema/aws-bedrock-flow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/schema/aws-bedrock-flow.json -------------------------------------------------------------------------------- /src/schema/aws-connect-queue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/schema/aws-connect-queue.json -------------------------------------------------------------------------------- /src/schema/aws-connect-rule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/schema/aws-connect-rule.json -------------------------------------------------------------------------------- /src/schema/aws-connect-user.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/schema/aws-connect-user.json -------------------------------------------------------------------------------- /src/schema/aws-connect-view.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/schema/aws-connect-view.json -------------------------------------------------------------------------------- /src/schema/aws-databrew-job.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/schema/aws-databrew-job.json -------------------------------------------------------------------------------- /src/schema/aws-datasync-task.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/schema/aws-datasync-task.json -------------------------------------------------------------------------------- /src/schema/aws-dax-cluster.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/schema/aws-dax-cluster.json -------------------------------------------------------------------------------- /src/schema/aws-deadline-farm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/schema/aws-deadline-farm.json -------------------------------------------------------------------------------- /src/schema/aws-dms-endpoint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/schema/aws-dms-endpoint.json -------------------------------------------------------------------------------- /src/schema/aws-dsql-cluster.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/schema/aws-dsql-cluster.json -------------------------------------------------------------------------------- /src/schema/aws-ec2-ec2fleet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/schema/aws-ec2-ec2fleet.json -------------------------------------------------------------------------------- /src/schema/aws-ec2-eip.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/schema/aws-ec2-eip.json -------------------------------------------------------------------------------- /src/schema/aws-ec2-flowlog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/schema/aws-ec2-flowlog.json -------------------------------------------------------------------------------- /src/schema/aws-ec2-host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/schema/aws-ec2-host.json -------------------------------------------------------------------------------- /src/schema/aws-ec2-instance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/schema/aws-ec2-instance.json -------------------------------------------------------------------------------- /src/schema/aws-ec2-ipam.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/schema/aws-ec2-ipam.json -------------------------------------------------------------------------------- /src/schema/aws-ec2-ipampool.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/schema/aws-ec2-ipampool.json -------------------------------------------------------------------------------- /src/schema/aws-ec2-ipamscope.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/schema/aws-ec2-ipamscope.json -------------------------------------------------------------------------------- /src/schema/aws-ec2-keypair.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/schema/aws-ec2-keypair.json -------------------------------------------------------------------------------- /src/schema/aws-ec2-route.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/schema/aws-ec2-route.json -------------------------------------------------------------------------------- /src/schema/aws-ec2-spotfleet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/schema/aws-ec2-spotfleet.json -------------------------------------------------------------------------------- /src/schema/aws-ec2-subnet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/schema/aws-ec2-subnet.json -------------------------------------------------------------------------------- /src/schema/aws-ec2-volume.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/schema/aws-ec2-volume.json -------------------------------------------------------------------------------- /src/schema/aws-ec2-vpc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/schema/aws-ec2-vpc.json -------------------------------------------------------------------------------- /src/schema/aws-ecs-cluster.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/schema/aws-ecs-cluster.json -------------------------------------------------------------------------------- /src/schema/aws-ecs-service.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/schema/aws-ecs-service.json -------------------------------------------------------------------------------- /src/schema/aws-ecs-taskset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/schema/aws-ecs-taskset.json -------------------------------------------------------------------------------- /src/schema/aws-eks-addon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/schema/aws-eks-addon.json -------------------------------------------------------------------------------- /src/schema/aws-eks-cluster.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/schema/aws-eks-cluster.json -------------------------------------------------------------------------------- /src/schema/aws-eks-nodegroup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/schema/aws-eks-nodegroup.json -------------------------------------------------------------------------------- /src/schema/aws-emr-cluster.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/schema/aws-emr-cluster.json -------------------------------------------------------------------------------- /src/schema/aws-emr-step.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/schema/aws-emr-step.json -------------------------------------------------------------------------------- /src/schema/aws-emr-studio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/schema/aws-emr-studio.json -------------------------------------------------------------------------------- /src/schema/aws-events-rule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/schema/aws-events-rule.json -------------------------------------------------------------------------------- /src/schema/aws-fms-policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/schema/aws-fms-policy.json -------------------------------------------------------------------------------- /src/schema/aws-fsx-snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/schema/aws-fsx-snapshot.json -------------------------------------------------------------------------------- /src/schema/aws-fsx-volume.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/schema/aws-fsx-volume.json -------------------------------------------------------------------------------- /src/schema/aws-glue-crawler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/schema/aws-glue-crawler.json -------------------------------------------------------------------------------- /src/schema/aws-glue-database.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/schema/aws-glue-database.json -------------------------------------------------------------------------------- /src/schema/aws-glue-job.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/schema/aws-glue-job.json -------------------------------------------------------------------------------- /src/schema/aws-glue-registry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/schema/aws-glue-registry.json -------------------------------------------------------------------------------- /src/schema/aws-glue-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/schema/aws-glue-schema.json -------------------------------------------------------------------------------- /src/schema/aws-glue-table.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/schema/aws-glue-table.json -------------------------------------------------------------------------------- /src/schema/aws-glue-trigger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/schema/aws-glue-trigger.json -------------------------------------------------------------------------------- /src/schema/aws-glue-workflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/schema/aws-glue-workflow.json -------------------------------------------------------------------------------- /src/schema/aws-iam-accesskey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/schema/aws-iam-accesskey.json -------------------------------------------------------------------------------- /src/schema/aws-iam-group.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/schema/aws-iam-group.json -------------------------------------------------------------------------------- /src/schema/aws-iam-policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/schema/aws-iam-policy.json -------------------------------------------------------------------------------- /src/schema/aws-iam-role.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/schema/aws-iam-role.json -------------------------------------------------------------------------------- /src/schema/aws-iam-user.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/schema/aws-iam-user.json -------------------------------------------------------------------------------- /src/schema/aws-iot-command.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/schema/aws-iot-command.json -------------------------------------------------------------------------------- /src/schema/aws-iot-dimension.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/schema/aws-iot-dimension.json -------------------------------------------------------------------------------- /src/schema/aws-iot-logging.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/schema/aws-iot-logging.json -------------------------------------------------------------------------------- /src/schema/aws-iot-policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/schema/aws-iot-policy.json -------------------------------------------------------------------------------- /src/schema/aws-iot-rolealias.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/schema/aws-iot-rolealias.json -------------------------------------------------------------------------------- /src/schema/aws-iot-thing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/schema/aws-iot-thing.json -------------------------------------------------------------------------------- /src/schema/aws-iot-thingtype.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/schema/aws-iot-thingtype.json -------------------------------------------------------------------------------- /src/schema/aws-iot-topicrule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/schema/aws-iot-topicrule.json -------------------------------------------------------------------------------- /src/schema/aws-ivs-channel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/schema/aws-ivs-channel.json -------------------------------------------------------------------------------- /src/schema/aws-ivs-publickey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/schema/aws-ivs-publickey.json -------------------------------------------------------------------------------- /src/schema/aws-ivs-stage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/schema/aws-ivs-stage.json -------------------------------------------------------------------------------- /src/schema/aws-ivs-streamkey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/schema/aws-ivs-streamkey.json -------------------------------------------------------------------------------- /src/schema/aws-ivschat-room.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/schema/aws-ivschat-room.json -------------------------------------------------------------------------------- /src/schema/aws-kendra-faq.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/schema/aws-kendra-faq.json -------------------------------------------------------------------------------- /src/schema/aws-kendra-index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/schema/aws-kendra-index.json -------------------------------------------------------------------------------- /src/schema/aws-kms-alias.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/schema/aws-kms-alias.json -------------------------------------------------------------------------------- /src/schema/aws-kms-key.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/schema/aws-kms-key.json -------------------------------------------------------------------------------- /src/schema/aws-lambda-alias.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/schema/aws-lambda-alias.json -------------------------------------------------------------------------------- /src/schema/aws-lambda-url.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/schema/aws-lambda-url.json -------------------------------------------------------------------------------- /src/schema/aws-lex-bot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/schema/aws-lex-bot.json -------------------------------------------------------------------------------- /src/schema/aws-lex-botalias.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/schema/aws-lex-botalias.json -------------------------------------------------------------------------------- /src/schema/aws-location-map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/schema/aws-location-map.json -------------------------------------------------------------------------------- /src/schema/aws-logs-delivery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/schema/aws-logs-delivery.json -------------------------------------------------------------------------------- /src/schema/aws-logs-loggroup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/schema/aws-logs-loggroup.json -------------------------------------------------------------------------------- /src/schema/aws-m2-deployment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/schema/aws-m2-deployment.json -------------------------------------------------------------------------------- /src/schema/aws-macie-session.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/schema/aws-macie-session.json -------------------------------------------------------------------------------- /src/schema/aws-memorydb-acl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/schema/aws-memorydb-acl.json -------------------------------------------------------------------------------- /src/schema/aws-memorydb-user.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/schema/aws-memorydb-user.json -------------------------------------------------------------------------------- /src/schema/aws-msk-cluster.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/schema/aws-msk-cluster.json -------------------------------------------------------------------------------- /src/schema/aws-oam-link.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/schema/aws-oam-link.json -------------------------------------------------------------------------------- /src/schema/aws-oam-sink.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/schema/aws-oam-sink.json -------------------------------------------------------------------------------- /src/schema/aws-opsworks-app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/schema/aws-opsworks-app.json -------------------------------------------------------------------------------- /src/schema/aws-osis-pipeline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/schema/aws-osis-pipeline.json -------------------------------------------------------------------------------- /src/schema/aws-pcs-cluster.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/schema/aws-pcs-cluster.json -------------------------------------------------------------------------------- /src/schema/aws-pcs-queue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/schema/aws-pcs-queue.json -------------------------------------------------------------------------------- /src/schema/aws-pinpoint-app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/schema/aws-pinpoint-app.json -------------------------------------------------------------------------------- /src/schema/aws-pipes-pipe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/schema/aws-pipes-pipe.json -------------------------------------------------------------------------------- /src/schema/aws-qldb-ledger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/schema/aws-qldb-ledger.json -------------------------------------------------------------------------------- /src/schema/aws-qldb-stream.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/schema/aws-qldb-stream.json -------------------------------------------------------------------------------- /src/schema/aws-rbin-rule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/schema/aws-rbin-rule.json -------------------------------------------------------------------------------- /src/schema/aws-rds-dbcluster.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/schema/aws-rds-dbcluster.json -------------------------------------------------------------------------------- /src/schema/aws-rds-dbproxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/schema/aws-rds-dbproxy.json -------------------------------------------------------------------------------- /src/schema/aws-s3-bucket.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/schema/aws-s3-bucket.json -------------------------------------------------------------------------------- /src/schema/aws-sagemaker-app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/schema/aws-sagemaker-app.json -------------------------------------------------------------------------------- /src/schema/aws-sdb-domain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/schema/aws-sdb-domain.json -------------------------------------------------------------------------------- /src/schema/aws-ses-template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/schema/aws-ses-template.json -------------------------------------------------------------------------------- /src/schema/aws-sns-topic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/schema/aws-sns-topic.json -------------------------------------------------------------------------------- /src/schema/aws-sqs-queue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/schema/aws-sqs-queue.json -------------------------------------------------------------------------------- /src/schema/aws-ssm-document.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/schema/aws-ssm-document.json -------------------------------------------------------------------------------- /src/schema/aws-ssm-parameter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/schema/aws-ssm-parameter.json -------------------------------------------------------------------------------- /src/schema/aws-sso-instance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/schema/aws-sso-instance.json -------------------------------------------------------------------------------- /src/schema/aws-transfer-user.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/schema/aws-transfer-user.json -------------------------------------------------------------------------------- /src/schema/aws-waf-ipset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/schema/aws-waf-ipset.json -------------------------------------------------------------------------------- /src/schema/aws-waf-rule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/schema/aws-waf-rule.json -------------------------------------------------------------------------------- /src/schema/aws-waf-webacl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/schema/aws-waf-webacl.json -------------------------------------------------------------------------------- /src/schema/aws-wafv2-ipset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/schema/aws-wafv2-ipset.json -------------------------------------------------------------------------------- /src/schema/aws-wafv2-webacl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/schema/aws-wafv2-webacl.json -------------------------------------------------------------------------------- /src/schema/aws-xray-group.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/schema/aws-xray-group.json -------------------------------------------------------------------------------- /src/schema/find-permissions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/schema/find-permissions.ps1 -------------------------------------------------------------------------------- /src/schema/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/schema/update.ps1 -------------------------------------------------------------------------------- /src/schema/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/schema/update.sh -------------------------------------------------------------------------------- /src/secrets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/secrets.go -------------------------------------------------------------------------------- /src/secrets_Internal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/secrets_Internal_test.go -------------------------------------------------------------------------------- /src/secrets_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/secrets_test.go -------------------------------------------------------------------------------- /src/terraform.gcppolicy.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/terraform.gcppolicy.template -------------------------------------------------------------------------------- /src/terraform.policy.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/terraform.policy.template -------------------------------------------------------------------------------- /src/testdata/biscuit.md: -------------------------------------------------------------------------------- 1 | Anything 2 | -------------------------------------------------------------------------------- /src/testdata/gcp/basic/storage.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/testdata/gcp/basic/storage.tf -------------------------------------------------------------------------------- /src/testdata/init/nicconf/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/testdata/init/nicconf/main.tf -------------------------------------------------------------------------------- /src/testdata/scan/examples/empty/empty.tf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/testdata/test-readme-empty.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/testdata/test-readme-wrong.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/testdata/test-readme-wrong.md -------------------------------------------------------------------------------- /src/testdata/test-readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/testdata/test-readme.md -------------------------------------------------------------------------------- /src/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/types.go -------------------------------------------------------------------------------- /src/types_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/types_test.go -------------------------------------------------------------------------------- /src/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/utils.go -------------------------------------------------------------------------------- /src/utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/utils_test.go -------------------------------------------------------------------------------- /src/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/version.go -------------------------------------------------------------------------------- /src/watch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/watch.go -------------------------------------------------------------------------------- /src/watch_internal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/watch_internal_test.go -------------------------------------------------------------------------------- /src/watch_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/src/watch_test.go -------------------------------------------------------------------------------- /terraform/aws/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/terraform/aws/Makefile -------------------------------------------------------------------------------- /terraform/aws/backup/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_ami.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/terraform/aws/backup/aws_ami.tf -------------------------------------------------------------------------------- /terraform/aws/backup/aws_amplify_backend_environment.tf: -------------------------------------------------------------------------------- 1 | resource "aws_amplify_backend_environment" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_amplify_webhook.tf: -------------------------------------------------------------------------------- 1 | resource "aws_amplify_webhook" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_appfabric_ingestion.tf: -------------------------------------------------------------------------------- 1 | resource "aws_appfabric_ingestion" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_appflow_connector_profile.tf: -------------------------------------------------------------------------------- 1 | resource "aws_appflow_connector_profile" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_apprunner_connection.tf: -------------------------------------------------------------------------------- 1 | resource "aws_apprunner_connection" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_apprunner_deployment.tf: -------------------------------------------------------------------------------- 1 | resource "aws_apprunner_deployment" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_apprunner_service.tf: -------------------------------------------------------------------------------- 1 | resource "aws_apprunner_service" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_apprunner_vpc_connector.tf: -------------------------------------------------------------------------------- 1 | resource "aws_apprunner_vpc_connector" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_apprunner_vpc_ingress_connection.tf: -------------------------------------------------------------------------------- 1 | resource "aws_apprunner_vpc_ingress_connection" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_appstream_image_builder.tf: -------------------------------------------------------------------------------- 1 | resource "aws_appstream_image_builder" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_appsync_api_key.tf: -------------------------------------------------------------------------------- 1 | resource "aws_appsync_api_key" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_appsync_domain_name.tf: -------------------------------------------------------------------------------- 1 | resource "aws_appsync_domain_name" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_appsync_function.tf: -------------------------------------------------------------------------------- 1 | resource "aws_appsync_function" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_appsync_resolver.tf: -------------------------------------------------------------------------------- 1 | resource "aws_appsync_resolver" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_appsync_type.tf: -------------------------------------------------------------------------------- 1 | resource "aws_appsync_type" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_backup_restore_testing_plan.tf: -------------------------------------------------------------------------------- 1 | resource "aws_backup_restore_testing_plan" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_bedrock_guardrail.tf: -------------------------------------------------------------------------------- 1 | resource "aws_bedrock_guardrail" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_bedrock_guardrail_version.tf: -------------------------------------------------------------------------------- 1 | resource "aws_bedrock_guardrail_version" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_bogus.pike.tf: -------------------------------------------------------------------------------- 1 | resource "aws_bogus" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_cleanrooms_membership.tf: -------------------------------------------------------------------------------- 1 | resource "aws_cleanrooms_membership" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_cloud9_environment_membership.tf: -------------------------------------------------------------------------------- 1 | resource "aws_cloud9_environment_membership" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_cloudformation_stack_instances.tf: -------------------------------------------------------------------------------- 1 | resource "aws_cloudformation_stack_instances" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_cloudfront_vpc_origin.tf: -------------------------------------------------------------------------------- 1 | resource "aws_cloudfront_vpc_origin" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_cloudhsm_v2_cluster.tf: -------------------------------------------------------------------------------- 1 | resource "aws_cloudhsm_v2_cluster" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_cloudhsm_v2_hsm.tf: -------------------------------------------------------------------------------- 1 | resource "aws_cloudhsm_v2_hsm" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_cloudwatch_log_account_policy.tf: -------------------------------------------------------------------------------- 1 | resource "aws_cloudwatch_log_account_policy" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_codebuild_fleet.tf: -------------------------------------------------------------------------------- 1 | resource "aws_codebuild_fleet" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_codeconnections_host.tf: -------------------------------------------------------------------------------- 1 | resource "aws_codeconnections_host" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_cognito_managed_user_pool_client.tf: -------------------------------------------------------------------------------- 1 | resource "aws_cognito_managed_user_pool_client" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_comprehend_entity_recognizer.tf: -------------------------------------------------------------------------------- 1 | resource "aws_comprehend_entity_recognizer" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_config_organization_custom_rule.tf: -------------------------------------------------------------------------------- 1 | resource "aws_config_organization_custom_rule" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_costoptimizationhub_preferences.tf: -------------------------------------------------------------------------------- 1 | resource "aws_costoptimizationhub_preferences" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_cur_report_definition.tf: -------------------------------------------------------------------------------- 1 | resource "aws_cur_report_definition" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_customerprofiles_domain.tf: -------------------------------------------------------------------------------- 1 | resource "aws_customerprofiles_domain" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_dataexchange_event_action.tf: -------------------------------------------------------------------------------- 1 | resource "aws_dataexchange_event_action" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_dataexchange_revision.tf: -------------------------------------------------------------------------------- 1 | resource "aws_dataexchange_revision" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_datazone_form_type.tf: -------------------------------------------------------------------------------- 1 | resource "aws_datazone_form_type" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_datazone_glossary.tf: -------------------------------------------------------------------------------- 1 | resource "aws_datazone_glossary" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_datazone_glossary_term.tf: -------------------------------------------------------------------------------- 1 | resource "aws_datazone_glossary_term" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_datazone_project.tf: -------------------------------------------------------------------------------- 1 | resource "aws_datazone_project" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_datazone_user_profile.tf: -------------------------------------------------------------------------------- 1 | resource "aws_datazone_user_profile" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_detective_graph.tf: -------------------------------------------------------------------------------- 1 | resource "aws_detective_graph" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_detective_invitation_accepter.tf: -------------------------------------------------------------------------------- 1 | resource "aws_detective_invitation_accepter" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_detective_member.tf: -------------------------------------------------------------------------------- 1 | resource "aws_detective_member" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_devicefarm_instance_profile.tf: -------------------------------------------------------------------------------- 1 | resource "aws_devicefarm_instance_profile" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_devicefarm_network_profile.tf: -------------------------------------------------------------------------------- 1 | resource "aws_devicefarm_network_profile" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_devicefarm_project.tf: -------------------------------------------------------------------------------- 1 | resource "aws_devicefarm_project" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_devicefarm_upload.tf: -------------------------------------------------------------------------------- 1 | resource "aws_devicefarm_upload" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_devopsguru_notification_channel.tf: -------------------------------------------------------------------------------- 1 | resource "aws_devopsguru_notification_channel" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_devopsguru_service_integration.tf: -------------------------------------------------------------------------------- 1 | resource "aws_devopsguru_service_integration" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_directory_service_region.tf: -------------------------------------------------------------------------------- 1 | resource "aws_directory_service_region" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_directory_service_trust.tf: -------------------------------------------------------------------------------- 1 | resource "aws_directory_service_trust" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_dms_replication_config.tf: -------------------------------------------------------------------------------- 1 | # resource "aws_dms_replication_config" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_docdbelastic_cluster.tf: -------------------------------------------------------------------------------- 1 | resource "aws_docdbelastic_cluster" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_dx_bgp_peer.tf: -------------------------------------------------------------------------------- 1 | resource "aws_dx_bgp_peer" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_dx_connection.tf: -------------------------------------------------------------------------------- 1 | resource "aws_dx_connection" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_dx_gateway_association_proposal.tf: -------------------------------------------------------------------------------- 1 | resource "aws_dx_gateway_association_proposal" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_dx_hosted_connection.tf: -------------------------------------------------------------------------------- 1 | resource "aws_dx_hosted_connection" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_dx_lag.tf: -------------------------------------------------------------------------------- 1 | resource "aws_dx_lag" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_dx_macsec_key_association.tf: -------------------------------------------------------------------------------- 1 | resource "aws_dx_macsec_key_association" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_dx_private_virtual_interface.tf: -------------------------------------------------------------------------------- 1 | resource "aws_dx_private_virtual_interface" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_dx_public_virtual_interface.tf: -------------------------------------------------------------------------------- 1 | resource "aws_dx_public_virtual_interface" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_dx_transit_virtual_interface.tf: -------------------------------------------------------------------------------- 1 | resource "aws_dx_transit_virtual_interface" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_dynamodb_table_export.tf: -------------------------------------------------------------------------------- 1 | resource "aws_dynamodb_table_export" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_dynamodb_table_replica.tf: -------------------------------------------------------------------------------- 1 | resource "aws_dynamodb_table_replica" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_ebs_fast_snapshot_restore.tf: -------------------------------------------------------------------------------- 1 | resource "aws_ebs_fast_snapshot_restore" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_ebs_snapshot_import.tf: -------------------------------------------------------------------------------- 1 | resource "aws_ebs_snapshot_import" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_ec2_capacity_block_reservation.tf: -------------------------------------------------------------------------------- 1 | resource "aws_ec2_capacity_block_reservation" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_ec2_instance_connect_endpoint.tf: -------------------------------------------------------------------------------- 1 | resource "aws_ec2_instance_connect_endpoint" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_ec2_instance_metadata_defaults.tf: -------------------------------------------------------------------------------- 1 | resource "aws_ec2_instance_metadata_defaults" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_ec2_local_gateway_route.tf: -------------------------------------------------------------------------------- 1 | resource "aws_ec2_local_gateway_route" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_ec2_managed_prefix_list.tf: -------------------------------------------------------------------------------- 1 | resource "aws_ec2_managed_prefix_list" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_ec2_managed_prefix_list_entry.tf: -------------------------------------------------------------------------------- 1 | resource "aws_ec2_managed_prefix_list_entry" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_ec2_subnet_cidr_reservation.tf: -------------------------------------------------------------------------------- 1 | resource "aws_ec2_subnet_cidr_reservation" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_ec2_traffic_mirror_filter.tf: -------------------------------------------------------------------------------- 1 | resource "aws_ec2_traffic_mirror_filter" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_ec2_transit_gateway_connect_peer.tf: -------------------------------------------------------------------------------- 1 | resource "aws_ec2_transit_gateway_connect_peer" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_ec2_transit_gateway_policy_table.tf: -------------------------------------------------------------------------------- 1 | resource "aws_ec2_transit_gateway_policy_table" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_ecr_account_setting.tf: -------------------------------------------------------------------------------- 1 | resource "aws_ecr_account_setting" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_ecs_account_setting_default.tf: -------------------------------------------------------------------------------- 1 | resource "aws_ecs_account_setting_default" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_ecs_cluster_capacity_providers.tf: -------------------------------------------------------------------------------- 1 | resource "aws_ecs_cluster_capacity_providers" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_ecs_task_set.tf: -------------------------------------------------------------------------------- 1 | resource "aws_ecs_task_set" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_eip.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/terraform/aws/backup/aws_eip.tf -------------------------------------------------------------------------------- /terraform/aws/backup/aws_eip_association.tf: -------------------------------------------------------------------------------- 1 | resource "aws_eip_association" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_eip_domain_name.tf: -------------------------------------------------------------------------------- 1 | resource "aws_eip_domain_name" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_eks_access_entry.tf: -------------------------------------------------------------------------------- 1 | resource "aws_eks_access_entry" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_eks_access_policy_association.tf: -------------------------------------------------------------------------------- 1 | resource "aws_eks_access_policy_association" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_eks_fargate_profile.tf: -------------------------------------------------------------------------------- 1 | resource "aws_eks_fargate_profile" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_eks_identity_provider_config.tf: -------------------------------------------------------------------------------- 1 | resource "aws_eks_identity_provider_config" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_eks_pod_identity_association.tf: -------------------------------------------------------------------------------- 1 | resource "aws_eks_pod_identity_association" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_elasticsearch_vpc_endpoint.tf: -------------------------------------------------------------------------------- 1 | # resource "aws_elasticsearch_vpc_endpoint" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_elastictranscoder_pipeline.tf: -------------------------------------------------------------------------------- 1 | resource "aws_elastictranscoder_pipeline" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_elastictranscoder_preset.tf: -------------------------------------------------------------------------------- 1 | resource "aws_elastictranscoder_preset" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_elb.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/terraform/aws/backup/aws_elb.tf -------------------------------------------------------------------------------- /terraform/aws/backup/aws_emr_studio.tf: -------------------------------------------------------------------------------- 1 | resource "aws_emr_studio" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_emr_studio_session_mapping.tf: -------------------------------------------------------------------------------- 1 | resource "aws_emr_studio_session_mapping" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_emrcontainers_job_template.tf: -------------------------------------------------------------------------------- 1 | resource "aws_emrcontainers_job_template" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_emrcontainers_virtual_cluster.tf: -------------------------------------------------------------------------------- 1 | resource "aws_emrcontainers_virtual_cluster" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_emrserverless_application.tf: -------------------------------------------------------------------------------- 1 | resource "aws_emrserverless_application" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_evidently_feature.tf: -------------------------------------------------------------------------------- 1 | resource "aws_evidently_feature" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_evidently_launch.tf: -------------------------------------------------------------------------------- 1 | resource "aws_evidently_launch" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_evidently_project.tf: -------------------------------------------------------------------------------- 1 | resource "aws_evidently_project" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_evidently_segment.tf: -------------------------------------------------------------------------------- 1 | resource "aws_evidently_segment" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_finspace_kx_cluster.tf: -------------------------------------------------------------------------------- 1 | resource "aws_finspace_kx_cluster" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_finspace_kx_database.tf: -------------------------------------------------------------------------------- 1 | resource "aws_finspace_kx_database" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_finspace_kx_dataview.tf: -------------------------------------------------------------------------------- 1 | resource "aws_finspace_kx_dataview" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_finspace_kx_environment.tf: -------------------------------------------------------------------------------- 1 | resource "aws_finspace_kx_environment" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_finspace_kx_scaling_group.tf: -------------------------------------------------------------------------------- 1 | resource "aws_finspace_kx_scaling_group" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_finspace_kx_user.tf: -------------------------------------------------------------------------------- 1 | resource "aws_finspace_kx_user" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_finspace_kx_volume.tf: -------------------------------------------------------------------------------- 1 | resource "aws_finspace_kx_volume" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_fis_experiment_template.tf: -------------------------------------------------------------------------------- 1 | resource "aws_fis_experiment_template" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_fms_admin_account.tf: -------------------------------------------------------------------------------- 1 | resource "aws_fms_admin_account" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_fms_policy.tf: -------------------------------------------------------------------------------- 1 | resource "aws_fms_policy" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_gamelift_alias.tf: -------------------------------------------------------------------------------- 1 | resource "aws_gamelift_alias" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_gamelift_build.tf: -------------------------------------------------------------------------------- 1 | resource "aws_gamelift_build" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_gamelift_fleet.tf: -------------------------------------------------------------------------------- 1 | resource "aws_gamelift_fleet" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_gamelift_script.tf: -------------------------------------------------------------------------------- 1 | resource "aws_gamelift_script" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_globalaccelerator_endpoint_group.tf: -------------------------------------------------------------------------------- 1 | resource "aws_globalaccelerator_endpoint_group" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_globalaccelerator_listener.tf: -------------------------------------------------------------------------------- 1 | resource "aws_globalaccelerator_listener" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_glue_catalog_table_optimizer.tf: -------------------------------------------------------------------------------- 1 | resource "aws_glue_catalog_table_optimizer" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_glue_partition_index.tf: -------------------------------------------------------------------------------- 1 | resource "aws_glue_partition_index" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_grafana_license_association.tf: -------------------------------------------------------------------------------- 1 | resource "aws_grafana_license_association" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_guardduty_detector.tf: -------------------------------------------------------------------------------- 1 | resource "aws_guardduty_detector" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_guardduty_filter.tf: -------------------------------------------------------------------------------- 1 | resource "aws_guardduty_filter" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_guardduty_invite_accepter.tf: -------------------------------------------------------------------------------- 1 | resource "aws_guardduty_invite_accepter" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_guardduty_ipset.tf: -------------------------------------------------------------------------------- 1 | resource "aws_guardduty_ipset" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_guardduty_member.tf: -------------------------------------------------------------------------------- 1 | resource "aws_guardduty_member" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_guardduty_publishing_destination.tf: -------------------------------------------------------------------------------- 1 | resource "aws_guardduty_publishing_destination" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_guardduty_threatintelset.tf: -------------------------------------------------------------------------------- 1 | resource "aws_guardduty_threatintelset" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_imagebuilder_workflow.tf: -------------------------------------------------------------------------------- 1 | resource "aws_imagebuilder_workflow" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_internet_gateway_attachment.tf: -------------------------------------------------------------------------------- 1 | resource "aws_internet_gateway_attachment" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_iot_authorizer.tf: -------------------------------------------------------------------------------- 1 | resource "aws_iot_authorizer" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_iot_billing_group.tf: -------------------------------------------------------------------------------- 1 | resource "aws_iot_billing_group" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_iot_ca_certificate.tf: -------------------------------------------------------------------------------- 1 | resource "aws_iot_ca_certificate" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_iot_certificate.tf: -------------------------------------------------------------------------------- 1 | resource "aws_iot_certificate" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_iot_event_configurations.tf: -------------------------------------------------------------------------------- 1 | resource "aws_iot_event_configurations" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_iot_indexing_configuration.tf: -------------------------------------------------------------------------------- 1 | resource "aws_iot_indexing_configuration" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_iot_logging_options.tf: -------------------------------------------------------------------------------- 1 | resource "aws_iot_logging_options" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_iot_policy.tf: -------------------------------------------------------------------------------- 1 | resource "aws_iot_policy" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_iot_policy_attachment.tf: -------------------------------------------------------------------------------- 1 | resource "aws_iot_policy_attachment" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_iot_provisioning_template.tf: -------------------------------------------------------------------------------- 1 | resource "aws_iot_provisioning_template" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_iot_role_alias.tf: -------------------------------------------------------------------------------- 1 | resource "aws_iot_role_alias" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_iot_thing.tf: -------------------------------------------------------------------------------- 1 | resource "aws_iot_thing" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_iot_thing_group.tf: -------------------------------------------------------------------------------- 1 | resource "aws_iot_thing_group" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_iot_thing_group_membership.tf: -------------------------------------------------------------------------------- 1 | resource "aws_iot_thing_group_membership" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_iot_thing_principal_attachment.tf: -------------------------------------------------------------------------------- 1 | resource "aws_iot_thing_principal_attachment" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_iot_thing_type.tf: -------------------------------------------------------------------------------- 1 | resource "aws_iot_thing_type" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_iot_topic_rule.tf: -------------------------------------------------------------------------------- 1 | resource "aws_iot_topic_rule" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_iot_topic_rule_destination.tf: -------------------------------------------------------------------------------- 1 | resource "aws_iot_topic_rule_destination" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_ivs_channel.tf: -------------------------------------------------------------------------------- 1 | resource "aws_ivs_channel" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_ivs_playback_key_pair.tf: -------------------------------------------------------------------------------- 1 | resource "aws_ivs_playback_key_pair" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_ivs_recording_configuration.tf: -------------------------------------------------------------------------------- 1 | resource "aws_ivs_recording_configuration" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_ivschat_logging_configuration.tf: -------------------------------------------------------------------------------- 1 | resource "aws_ivschat_logging_configuration" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_ivschat_room.tf: -------------------------------------------------------------------------------- 1 | resource "aws_ivschat_room" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_kendra_experience.tf: -------------------------------------------------------------------------------- 1 | resource "aws_kendra_experience" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_kendra_faq.tf: -------------------------------------------------------------------------------- 1 | resource "aws_kendra_faq" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_kendra_index.tf: -------------------------------------------------------------------------------- 1 | resource "aws_kendra_index" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_kendra_thesaurus.tf: -------------------------------------------------------------------------------- 1 | resource "aws_kendra_thesaurus" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_kinesis_analytics_application.tf: -------------------------------------------------------------------------------- 1 | resource "aws_kinesis_analytics_application" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_kinesisanalyticsv2_application.tf: -------------------------------------------------------------------------------- 1 | resource "aws_kinesisanalyticsv2_application" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_lakeformation_data_cells_filter.tf: -------------------------------------------------------------------------------- 1 | resource "aws_lakeformation_data_cells_filter" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_lakeformation_lf_tag.tf: -------------------------------------------------------------------------------- 1 | resource "aws_lakeformation_lf_tag" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_lakeformation_opt_in.tf: -------------------------------------------------------------------------------- 1 | resource "aws_lakeformation_opt_in" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_lambda_runtime_management_config.tf: -------------------------------------------------------------------------------- 1 | resource "aws_lambda_runtime_management_config" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_lb.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/terraform/aws/backup/aws_lb.tf -------------------------------------------------------------------------------- /terraform/aws/backup/aws_lb_listener_certificate.tf: -------------------------------------------------------------------------------- 1 | resource "aws_lb_listener_certificate" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_lb_ssl_negotiation_policy.tf: -------------------------------------------------------------------------------- 1 | resource "aws_lb_ssl_negotiation_policy" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_lex_bot.tf: -------------------------------------------------------------------------------- 1 | resource "aws_lex_bot" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_lex_bot_alias.tf: -------------------------------------------------------------------------------- 1 | resource "aws_lex_bot_alias" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_lex_intent.tf: -------------------------------------------------------------------------------- 1 | resource "aws_lex_intent" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_lex_slot_type.tf: -------------------------------------------------------------------------------- 1 | resource "aws_lex_slot_type" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_lexv2models_bot.tf: -------------------------------------------------------------------------------- 1 | resource "aws_lexv2models_bot" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_lexv2models_bot_locale.tf: -------------------------------------------------------------------------------- 1 | resource "aws_lexv2models_bot_locale" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_lexv2models_bot_version.tf: -------------------------------------------------------------------------------- 1 | resource "aws_lexv2models_bot_version" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_lexv2models_intent.tf: -------------------------------------------------------------------------------- 1 | resource "aws_lexv2models_intent" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_lexv2models_slot.tf: -------------------------------------------------------------------------------- 1 | resource "aws_lexv2models_slot" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_lexv2models_slot_type.tf: -------------------------------------------------------------------------------- 1 | resource "aws_lexv2models_slot_type" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_licensemanager_association.tf: -------------------------------------------------------------------------------- 1 | resource "aws_licensemanager_association" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_licensemanager_grant.tf: -------------------------------------------------------------------------------- 1 | resource "aws_licensemanager_grant" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_licensemanager_grant_accepter.tf: -------------------------------------------------------------------------------- 1 | resource "aws_licensemanager_grant_accepter" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_lightsail_bucket.tf: -------------------------------------------------------------------------------- 1 | resource "aws_lightsail_bucket" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_lightsail_certificate.tf: -------------------------------------------------------------------------------- 1 | resource "aws_lightsail_certificate" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_lightsail_container_service.tf: -------------------------------------------------------------------------------- 1 | resource "aws_lightsail_container_service" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_lightsail_database.tf: -------------------------------------------------------------------------------- 1 | resource "aws_lightsail_database" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_lightsail_disk.tf: -------------------------------------------------------------------------------- 1 | resource "aws_lightsail_disk" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_lightsail_disk_attachment.tf: -------------------------------------------------------------------------------- 1 | resource "aws_lightsail_disk_attachment" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_lightsail_distribution.tf: -------------------------------------------------------------------------------- 1 | resource "aws_lightsail_distribution" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_lightsail_domain.tf: -------------------------------------------------------------------------------- 1 | resource "aws_lightsail_domain" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_lightsail_domain_entry.tf: -------------------------------------------------------------------------------- 1 | resource "aws_lightsail_domain_entry" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_lightsail_key_pair.tf: -------------------------------------------------------------------------------- 1 | resource "aws_lightsail_key_pair" "pike" { 2 | } 3 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_lightsail_lb.tf: -------------------------------------------------------------------------------- 1 | resource "aws_lightsail_lb" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_lightsail_lb_attachment.tf: -------------------------------------------------------------------------------- 1 | resource "aws_lightsail_lb_attachment" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_lightsail_lb_certificate.tf: -------------------------------------------------------------------------------- 1 | resource "aws_lightsail_lb_certificate" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_lightsail_lb_stickiness_policy.tf: -------------------------------------------------------------------------------- 1 | resource "aws_lightsail_lb_stickiness_policy" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_macie2_classification_job.tf: -------------------------------------------------------------------------------- 1 | resource "aws_macie2_classification_job" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_macie2_custom_data_identifier.tf: -------------------------------------------------------------------------------- 1 | resource "aws_macie2_custom_data_identifier" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_macie2_findings_filter.tf: -------------------------------------------------------------------------------- 1 | resource "aws_macie2_findings_filter" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_macie2_invitation_accepter.tf: -------------------------------------------------------------------------------- 1 | resource "aws_macie2_invitation_accepter" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_macie2_member.tf: -------------------------------------------------------------------------------- 1 | resource "aws_macie2_member" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_main_route_table_association.tf: -------------------------------------------------------------------------------- 1 | resource "aws_main_route_table_association" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_media_package_channel.tf: -------------------------------------------------------------------------------- 1 | resource "aws_media_package_channel" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_media_packagev2_channel_group.tf: -------------------------------------------------------------------------------- 1 | resource "aws_media_packagev2_channel_group" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_media_store_container.tf: -------------------------------------------------------------------------------- 1 | resource "aws_media_store_container" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_media_store_container_policy.tf: -------------------------------------------------------------------------------- 1 | resource "aws_media_store_container_policy" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_medialive_channel.tf: -------------------------------------------------------------------------------- 1 | resource "aws_medialive_channel" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_medialive_multiplex.tf: -------------------------------------------------------------------------------- 1 | resource "aws_medialive_multiplex" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_medialive_multiplex_program.tf: -------------------------------------------------------------------------------- 1 | resource "aws_medialive_multiplex_program" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_memorydb_acl.tf: -------------------------------------------------------------------------------- 1 | resource "aws_memorydb_acl" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_memorydb_multi_region_cluster.tf: -------------------------------------------------------------------------------- 1 | resource "aws_memorydb_multi_region_cluster" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_memorydb_parameter_group.tf: -------------------------------------------------------------------------------- 1 | resource "aws_memorydb_parameter_group" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_msk_cluster_policy.tf: -------------------------------------------------------------------------------- 1 | resource "aws_msk_cluster_policy" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_msk_replicator.tf: -------------------------------------------------------------------------------- 1 | resource "aws_msk_replicator" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_msk_vpc_connection.tf: -------------------------------------------------------------------------------- 1 | resource "aws_msk_vpc_connection" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_mskconnect_custom_plugin.tf: -------------------------------------------------------------------------------- 1 | resource "aws_mskconnect_custom_plugin" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_mskconnect_worker_configuration.tf: -------------------------------------------------------------------------------- 1 | resource "aws_mskconnect_worker_configuration" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_mwaa_environment.tf: -------------------------------------------------------------------------------- 1 | resource "aws_mwaa_environment" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_network_interface_attachment.tf: -------------------------------------------------------------------------------- 1 | resource "aws_network_interface_attachment" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_networkmanager_connect_peer.tf: -------------------------------------------------------------------------------- 1 | resource "aws_networkmanager_connect_peer" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_networkmanager_connection.tf: -------------------------------------------------------------------------------- 1 | resource "aws_networkmanager_connection" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_networkmanager_device.tf: -------------------------------------------------------------------------------- 1 | resource "aws_networkmanager_device" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_networkmanager_link.tf: -------------------------------------------------------------------------------- 1 | resource "aws_networkmanager_link" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_networkmanager_link_association.tf: -------------------------------------------------------------------------------- 1 | resource "aws_networkmanager_link_association" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_networkmanager_site.tf: -------------------------------------------------------------------------------- 1 | resource "aws_networkmanager_site" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_networkmanager_vpc_attachment.tf: -------------------------------------------------------------------------------- 1 | resource "aws_networkmanager_vpc_attachment" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_networkmonitor_probe.tf: -------------------------------------------------------------------------------- 1 | resource "aws_networkmonitor_probe" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_opensearch_domain_saml_options.tf: -------------------------------------------------------------------------------- 1 | resource "aws_opensearch_domain_saml_options" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_opensearch_outbound_connection.tf: -------------------------------------------------------------------------------- 1 | resource "aws_opensearch_outbound_connection" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_opensearch_package.tf: -------------------------------------------------------------------------------- 1 | resource "aws_opensearch_package" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_opensearch_package_association.tf: -------------------------------------------------------------------------------- 1 | resource "aws_opensearch_package_association" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_opensearch_vpc_endpoint.tf: -------------------------------------------------------------------------------- 1 | resource "aws_opensearch_vpc_endpoint" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_opsworks_application.tf: -------------------------------------------------------------------------------- 1 | resource "aws_opsworks_application" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_opsworks_custom_layer.tf: -------------------------------------------------------------------------------- 1 | resource "aws_opsworks_custom_layer" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_opsworks_ecs_cluster_layer.tf: -------------------------------------------------------------------------------- 1 | resource "aws_opsworks_ecs_cluster_layer" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_opsworks_ganglia_layer.tf: -------------------------------------------------------------------------------- 1 | resource "aws_opsworks_ganglia_layer" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_opsworks_haproxy_layer.tf: -------------------------------------------------------------------------------- 1 | resource "aws_opsworks_haproxy_layer" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_opsworks_instance.tf: -------------------------------------------------------------------------------- 1 | resource "aws_opsworks_instance" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_opsworks_java_app_layer.tf: -------------------------------------------------------------------------------- 1 | resource "aws_opsworks_java_app_layer" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_opsworks_memcached_layer.tf: -------------------------------------------------------------------------------- 1 | resource "aws_opsworks_memcached_layer" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_opsworks_mysql_layer.tf: -------------------------------------------------------------------------------- 1 | resource "aws_opsworks_mysql_layer" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_opsworks_nodejs_app_layer.tf: -------------------------------------------------------------------------------- 1 | resource "aws_opsworks_nodejs_app_layer" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_opsworks_permission.tf: -------------------------------------------------------------------------------- 1 | resource "aws_opsworks_permission" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_opsworks_php_app_layer.tf: -------------------------------------------------------------------------------- 1 | resource "aws_opsworks_php_app_layer" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_opsworks_rails_app_layer.tf: -------------------------------------------------------------------------------- 1 | resource "aws_opsworks_rails_app_layer" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_opsworks_rds_db_instance.tf: -------------------------------------------------------------------------------- 1 | resource "aws_opsworks_rds_db_instance" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_opsworks_stack.tf: -------------------------------------------------------------------------------- 1 | resource "aws_opsworks_stack" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_opsworks_static_web_layer.tf: -------------------------------------------------------------------------------- 1 | resource "aws_opsworks_static_web_layer" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_opsworks_user_profile.tf: -------------------------------------------------------------------------------- 1 | resource "aws_opsworks_user_profile" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_organizations_account.tf: -------------------------------------------------------------------------------- 1 | resource "aws_organizations_account" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_osis_pipeline.tf: -------------------------------------------------------------------------------- 1 | resource "aws_osis_pipeline" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_paymentcryptography_key.tf: -------------------------------------------------------------------------------- 1 | resource "aws_paymentcryptography_key" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_paymentcryptography_key_alias.tf: -------------------------------------------------------------------------------- 1 | resource "aws_paymentcryptography_key_alias" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_pinpoint_adm_channel.tf: -------------------------------------------------------------------------------- 1 | resource "aws_pinpoint_adm_channel" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_pinpoint_apns_channel.tf: -------------------------------------------------------------------------------- 1 | resource "aws_pinpoint_apns_channel" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_pinpoint_apns_sandbox_channel.tf: -------------------------------------------------------------------------------- 1 | resource "aws_pinpoint_apns_sandbox_channel" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_pinpoint_apns_voip_channel.tf: -------------------------------------------------------------------------------- 1 | resource "aws_pinpoint_apns_voip_channel" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_pinpoint_app.tf: -------------------------------------------------------------------------------- 1 | resource "aws_pinpoint_app" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_pinpoint_baidu_channel.tf: -------------------------------------------------------------------------------- 1 | resource "aws_pinpoint_baidu_channel" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_pinpoint_email_channel.tf: -------------------------------------------------------------------------------- 1 | resource "aws_pinpoint_email_channel" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_pinpoint_email_template.tf: -------------------------------------------------------------------------------- 1 | resource "aws_pinpoint_email_template" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_pinpoint_event_stream.tf: -------------------------------------------------------------------------------- 1 | resource "aws_pinpoint_event_stream" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_pinpoint_gcm_channel.tf: -------------------------------------------------------------------------------- 1 | resource "aws_pinpoint_gcm_channel" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_pinpoint_sms_channel.tf: -------------------------------------------------------------------------------- 1 | resource "aws_pinpoint_sms_channel" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_prometheus_rule_group_namespace.tf: -------------------------------------------------------------------------------- 1 | resource "aws_prometheus_rule_group_namespace" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_prometheus_scraper.tf: -------------------------------------------------------------------------------- 1 | resource "aws_prometheus_scraper" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_prometheus_workspace.tf: -------------------------------------------------------------------------------- 1 | resource "aws_prometheus_workspace" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_qldb_ledger.tf: -------------------------------------------------------------------------------- 1 | resource "aws_qldb_ledger" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_qldb_stream.tf: -------------------------------------------------------------------------------- 1 | resource "aws_qldb_stream" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_quicksight_analysis.tf: -------------------------------------------------------------------------------- 1 | resource "aws_quicksight_analysis" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_quicksight_dashboard.tf: -------------------------------------------------------------------------------- 1 | resource "aws_quicksight_dashboard" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_quicksight_data_set.tf: -------------------------------------------------------------------------------- 1 | resource "aws_quicksight_data_set" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_quicksight_refresh_schedule.tf: -------------------------------------------------------------------------------- 1 | resource "aws_quicksight_refresh_schedule" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_quicksight_role_membership.tf: -------------------------------------------------------------------------------- 1 | resource "aws_quicksight_role_membership" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_quicksight_template.tf: -------------------------------------------------------------------------------- 1 | resource "aws_quicksight_template" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_quicksight_theme.tf: -------------------------------------------------------------------------------- 1 | resource "aws_quicksight_theme" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_ram_sharing_with_organization.tf: -------------------------------------------------------------------------------- 1 | resource "aws_ram_sharing_with_organization" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_rbin_rule.tf: -------------------------------------------------------------------------------- 1 | resource "aws_rbin_rule" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_rds_certificate.tf: -------------------------------------------------------------------------------- 1 | resource "aws_rds_certificate" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_rds_cluster_snapshot_copy.tf: -------------------------------------------------------------------------------- 1 | resource "aws_rds_cluster_snapshot_copy" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_rds_custom_db_engine_version.tf: -------------------------------------------------------------------------------- 1 | resource "aws_rds_custom_db_engine_version" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_rds_export_task.tf: -------------------------------------------------------------------------------- 1 | resource "aws_rds_export_task" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_rds_integration.tf: -------------------------------------------------------------------------------- 1 | resource "aws_rds_integration" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_rds_shard_group.tf: -------------------------------------------------------------------------------- 1 | resource "aws_rds_shard_group" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_redshift_cluster_snapshot.tf: -------------------------------------------------------------------------------- 1 | resource "aws_redshift_cluster_snapshot" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_redshift_endpoint_access.tf: -------------------------------------------------------------------------------- 1 | resource "aws_redshift_endpoint_access" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_redshift_endpoint_authorization.tf: -------------------------------------------------------------------------------- 1 | resource "aws_redshift_endpoint_authorization" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_redshift_logging.tf: -------------------------------------------------------------------------------- 1 | resource "aws_redshift_logging" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_redshift_partner.tf: -------------------------------------------------------------------------------- 1 | resource "aws_redshift_partner" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_redshift_snapshot_copy.tf: -------------------------------------------------------------------------------- 1 | resource "aws_redshift_snapshot_copy" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_redshiftdata_statement.tf: -------------------------------------------------------------------------------- 1 | resource "aws_redshiftdata_statement" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_redshiftserverless_namespace.tf: -------------------------------------------------------------------------------- 1 | resource "aws_redshiftserverless_namespace" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_redshiftserverless_snapshot.tf: -------------------------------------------------------------------------------- 1 | resource "aws_redshiftserverless_snapshot" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_redshiftserverless_usage_limit.tf: -------------------------------------------------------------------------------- 1 | resource "aws_redshiftserverless_usage_limit" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_redshiftserverless_workgroup.tf: -------------------------------------------------------------------------------- 1 | resource "aws_redshiftserverless_workgroup" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_rekognition_project.tf: -------------------------------------------------------------------------------- 1 | resource "aws_rekognition_project" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_rekognition_stream_processor.tf: -------------------------------------------------------------------------------- 1 | resource "aws_rekognition_stream_processor" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_rolesanywhere_profile.tf: -------------------------------------------------------------------------------- 1 | resource "aws_rolesanywhere_profile" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_rolesanywhere_trust_anchor.tf: -------------------------------------------------------------------------------- 1 | resource "aws_rolesanywhere_trust_anchor" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_route.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/terraform/aws/backup/aws_route.tf -------------------------------------------------------------------------------- /terraform/aws/backup/aws_route53profiles_association.tf: -------------------------------------------------------------------------------- 1 | resource "aws_route53profiles_association" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_route53recoveryreadiness_cell.tf: -------------------------------------------------------------------------------- 1 | resource "aws_route53recoveryreadiness_cell" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_rum_app_monitor.tf: -------------------------------------------------------------------------------- 1 | resource "aws_rum_app_monitor" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_rum_metrics_destination.tf: -------------------------------------------------------------------------------- 1 | resource "aws_rum_metrics_destination" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_s3_access_point.tf: -------------------------------------------------------------------------------- 1 | resource "aws_s3_access_point" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_s3control_access_grant.tf: -------------------------------------------------------------------------------- 1 | resource "aws_s3control_access_grant" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_s3control_access_grants_instance.tf: -------------------------------------------------------------------------------- 1 | resource "aws_s3control_access_grants_instance" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_s3control_access_grants_location.tf: -------------------------------------------------------------------------------- 1 | resource "aws_s3control_access_grants_location" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_s3control_bucket.tf: -------------------------------------------------------------------------------- 1 | resource "aws_s3control_bucket" "pike" { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_s3control_bucket_policy.tf: -------------------------------------------------------------------------------- 1 | resource "aws_s3control_bucket_policy" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_s3outposts_endpoint.tf: -------------------------------------------------------------------------------- 1 | resource "aws_s3outposts_endpoint" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_sagemaker_flow_definition.tf: -------------------------------------------------------------------------------- 1 | resource "aws_sagemaker_flow_definition" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_sagemaker_hub.tf: -------------------------------------------------------------------------------- 1 | resource "aws_sagemaker_hub" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_sagemaker_mlflow_tracking_server.tf: -------------------------------------------------------------------------------- 1 | resource "aws_sagemaker_mlflow_tracking_server" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_schemas_discoverer.tf: -------------------------------------------------------------------------------- 1 | resource "aws_schemas_discoverer" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_schemas_registry.tf: -------------------------------------------------------------------------------- 1 | resource "aws_schemas_registry" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_schemas_registry_policy.tf: -------------------------------------------------------------------------------- 1 | resource "aws_schemas_registry_policy" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_securityhub_account.tf: -------------------------------------------------------------------------------- 1 | resource "aws_securityhub_account" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_securityhub_automation_rule.tf: -------------------------------------------------------------------------------- 1 | resource "aws_securityhub_automation_rule" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_securityhub_configuration_policy.tf: -------------------------------------------------------------------------------- 1 | resource "aws_securityhub_configuration_policy" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_securityhub_finding_aggregator.tf: -------------------------------------------------------------------------------- 1 | resource "aws_securityhub_finding_aggregator" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_securityhub_insight.tf: -------------------------------------------------------------------------------- 1 | resource "aws_securityhub_insight" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_securityhub_invite_accepter.tf: -------------------------------------------------------------------------------- 1 | resource "aws_securityhub_invite_accepter" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_securityhub_member.tf: -------------------------------------------------------------------------------- 1 | resource "aws_securityhub_member" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_securityhub_product_subscription.tf: -------------------------------------------------------------------------------- 1 | resource "aws_securityhub_product_subscription" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_securityhub_standards_control.tf: -------------------------------------------------------------------------------- 1 | resource "aws_securityhub_standards_control" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_securitylake_subscriber.tf: -------------------------------------------------------------------------------- 1 | resource "aws_securitylake_subscriber" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_service_discovery_instance.tf: -------------------------------------------------------------------------------- 1 | resource "aws_service_discovery_instance" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_sesv2_account_vdm_attributes.tf: -------------------------------------------------------------------------------- 1 | resource "aws_sesv2_account_vdm_attributes" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_sesv2_configuration_set.tf: -------------------------------------------------------------------------------- 1 | resource "aws_sesv2_configuration_set" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_sesv2_contact_list.tf: -------------------------------------------------------------------------------- 1 | resource "aws_sesv2_contact_list" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_sesv2_dedicated_ip_assignment.tf: -------------------------------------------------------------------------------- 1 | resource "aws_sesv2_dedicated_ip_assignment" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_sesv2_dedicated_ip_pool.tf: -------------------------------------------------------------------------------- 1 | resource "aws_sesv2_dedicated_ip_pool" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_sesv2_email_identity.tf: -------------------------------------------------------------------------------- 1 | resource "aws_sesv2_email_identity" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_sesv2_email_identity_policy.tf: -------------------------------------------------------------------------------- 1 | resource "aws_sesv2_email_identity_policy" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_shield_proactive_engagement.tf: -------------------------------------------------------------------------------- 1 | resource "aws_shield_proactive_engagement" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_shield_protection.tf: -------------------------------------------------------------------------------- 1 | resource "aws_shield_protection" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_shield_protection_group.tf: -------------------------------------------------------------------------------- 1 | resource "aws_shield_protection_group" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_shield_subscription.tf: -------------------------------------------------------------------------------- 1 | resource "aws_shield_subscription" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_spot_datafeed_subscription.tf: -------------------------------------------------------------------------------- 1 | resource "aws_spot_datafeed_subscription" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_spot_fleet_request.tf: -------------------------------------------------------------------------------- 1 | resource "aws_spot_fleet_request" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_ssm_activation.tf: -------------------------------------------------------------------------------- 1 | resource "aws_ssm_activation" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_ssm_association.tf: -------------------------------------------------------------------------------- 1 | resource "aws_ssm_association" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_ssm_default_patch_baseline.tf: -------------------------------------------------------------------------------- 1 | resource "aws_ssm_default_patch_baseline" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_ssm_service_setting.tf: -------------------------------------------------------------------------------- 1 | resource "aws_ssm_service_setting" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_ssmcontacts_rotation.tf: -------------------------------------------------------------------------------- 1 | resource "aws_ssmcontacts_rotation" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_ssmincidents_response_plan.tf: -------------------------------------------------------------------------------- 1 | resource "aws_ssmincidents_response_plan" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_ssoadmin_account_assignment.tf: -------------------------------------------------------------------------------- 1 | resource "aws_ssoadmin_account_assignment" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_ssoadmin_application.tf: -------------------------------------------------------------------------------- 1 | resource "aws_ssoadmin_application" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_ssoadmin_application_assignment.tf: -------------------------------------------------------------------------------- 1 | resource "aws_ssoadmin_application_assignment" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_ssoadmin_permission_set.tf: -------------------------------------------------------------------------------- 1 | resource "aws_ssoadmin_permission_set" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_ssoadmin_trusted_token_issuer.tf: -------------------------------------------------------------------------------- 1 | resource "aws_ssoadmin_trusted_token_issuer" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_transfer_access.tf: -------------------------------------------------------------------------------- 1 | resource "aws_transfer_access" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_transfer_agreement.tf: -------------------------------------------------------------------------------- 1 | resource "aws_transfer_agreement" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_transfer_certificate.tf: -------------------------------------------------------------------------------- 1 | resource "aws_transfer_certificate" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_transfer_connector.tf: -------------------------------------------------------------------------------- 1 | resource "aws_transfer_connector" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_transfer_profile.tf: -------------------------------------------------------------------------------- 1 | resource "aws_transfer_profile" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_transfer_server.tf: -------------------------------------------------------------------------------- 1 | resource "aws_transfer_server" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_transfer_ssh_key.tf: -------------------------------------------------------------------------------- 1 | resource "aws_transfer_ssh_key" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_transfer_user.tf: -------------------------------------------------------------------------------- 1 | resource "aws_transfer_user" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_transfer_workflow.tf: -------------------------------------------------------------------------------- 1 | resource "aws_transfer_workflow" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_verifiedaccess_instance.tf: -------------------------------------------------------------------------------- 1 | resource "aws_verifiedaccess_instance" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_verifiedpermissions_policy.tf: -------------------------------------------------------------------------------- 1 | resource "aws_verifiedpermissions_policy" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_verifiedpermissions_policy_store.tf: -------------------------------------------------------------------------------- 1 | resource "aws_verifiedpermissions_policy_store" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_verifiedpermissions_schema.tf: -------------------------------------------------------------------------------- 1 | resource "aws_verifiedpermissions_schema" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_vpc.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/terraform/aws/backup/aws_vpc.tf -------------------------------------------------------------------------------- /terraform/aws/backup/aws_vpc_block_public_access_options.tf: -------------------------------------------------------------------------------- 1 | resource "aws_vpc_block_public_access_options" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_vpc_route_server_association.tf: -------------------------------------------------------------------------------- 1 | resource "aws_vpc_route_server_association" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_wafregional_web_acl_association.tf: -------------------------------------------------------------------------------- 1 | resource "aws_wafregional_web_acl_association" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/aws_worklink_fleet.tf: -------------------------------------------------------------------------------- 1 | resource "aws_worklink_fleet" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/beanstalk.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/terraform/aws/backup/beanstalk.tf -------------------------------------------------------------------------------- /terraform/aws/backup/data.aws_autoscaling_groups.tf: -------------------------------------------------------------------------------- 1 | data "aws_autoscaling_groups" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/data.aws_availability_zone.tf: -------------------------------------------------------------------------------- 1 | data "aws_availability_zone" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/data.aws_backup_plan.tf: -------------------------------------------------------------------------------- 1 | data "aws_backup_plan" "pike" { 2 | plan_id = "123" 3 | } 4 | -------------------------------------------------------------------------------- /terraform/aws/backup/data.aws_cloudwatch_log_groups.tf: -------------------------------------------------------------------------------- 1 | data "aws_cloudwatch_log_groups" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/data.aws_customer_gateway.tf: -------------------------------------------------------------------------------- 1 | data "aws_customer_gateway" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/data.aws_db_event_categories.tf: -------------------------------------------------------------------------------- 1 | data "aws_db_event_categories" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/data.aws_db_instances.tf: -------------------------------------------------------------------------------- 1 | data "aws_db_instances" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/data.aws_docdb_engine_version.tf: -------------------------------------------------------------------------------- 1 | data "aws_docdb_engine_version" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/data.aws_dx_locations.tf: -------------------------------------------------------------------------------- 1 | data "aws_dx_locations" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/data.aws_ec2_client_vpn_endpoint.tf: -------------------------------------------------------------------------------- 1 | data "aws_ec2_client_vpn_endpoint" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/data.aws_ec2_coip_pool.tf: -------------------------------------------------------------------------------- 1 | data "aws_ec2_coip_pool" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/data.aws_ec2_host.tf: -------------------------------------------------------------------------------- 1 | data "aws_ec2_host" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/data.aws_ec2_instance_type_offering.tf: -------------------------------------------------------------------------------- 1 | data "aws_ec2_instance_type_offering" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/data.aws_ec2_local_gateway.tf: -------------------------------------------------------------------------------- 1 | data "aws_ec2_local_gateway" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/data.aws_ec2_local_gateway_route_table.tf: -------------------------------------------------------------------------------- 1 | data "aws_ec2_local_gateway_route_table" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/data.aws_ec2_local_gateway_route_tables.tf: -------------------------------------------------------------------------------- 1 | data "aws_ec2_local_gateway_route_tables" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/data.aws_ec2_local_gateways.tf: -------------------------------------------------------------------------------- 1 | data "aws_ec2_local_gateways" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/data.aws_ec2_network_insights_analysis.tf: -------------------------------------------------------------------------------- 1 | data "aws_ec2_network_insights_analysis" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/data.aws_ec2_network_insights_path.tf: -------------------------------------------------------------------------------- 1 | data "aws_ec2_network_insights_path" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/data.aws_ec2_transit_gateway.tf: -------------------------------------------------------------------------------- 1 | data "aws_ec2_transit_gateway" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/data.aws_ec2_transit_gateway_connect.tf: -------------------------------------------------------------------------------- 1 | data "aws_ec2_transit_gateway_connect" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/data.aws_ec2_transit_gateway_connect_peer.tf: -------------------------------------------------------------------------------- 1 | data "aws_ec2_transit_gateway_connect_peer" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/data.aws_ec2_transit_gateway_route_table.tf: -------------------------------------------------------------------------------- 1 | data "aws_ec2_transit_gateway_route_table" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/data.aws_ecr_authorization_token.tf: -------------------------------------------------------------------------------- 1 | data "aws_ecr_authorization_token" "pike" { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /terraform/aws/backup/data.aws_ecr_repository.tf: -------------------------------------------------------------------------------- 1 | resource "aws_ecr_repository" "example" { 2 | name = "pike" 3 | } 4 | -------------------------------------------------------------------------------- /terraform/aws/backup/data.aws_eks_clusters.tf: -------------------------------------------------------------------------------- 1 | data "aws_eks_clusters" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/data.aws_elastic_beanstalk_hosted_zone.tf: -------------------------------------------------------------------------------- 1 | data "aws_elastic_beanstalk_hosted_zone" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/data.aws_elasticache_user.tf: -------------------------------------------------------------------------------- 1 | data "aws_elasticache_user" "pike" { 2 | user_id = "1" 3 | } 4 | -------------------------------------------------------------------------------- /terraform/aws/backup/data.aws_elb_service_account.tf: -------------------------------------------------------------------------------- 1 | data "aws_elb_service_account" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/data.aws_emr_release_labels.tf: -------------------------------------------------------------------------------- 1 | data "aws_emr_release_labels" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/data.aws_emr_supported_instance_types.tf: -------------------------------------------------------------------------------- 1 | #data "aws_emr_supported_instance_types" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/data.aws_fsx_openzfs_snapshot.tf: -------------------------------------------------------------------------------- 1 | data "aws_fsx_openzfs_snapshot" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/data.aws_guardduty_detector.tf: -------------------------------------------------------------------------------- 1 | data "aws_guardduty_detector" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/data.aws_iam_account_alias.tf: -------------------------------------------------------------------------------- 1 | data "aws_iam_account_alias" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/data.aws_iam_policy.tf: -------------------------------------------------------------------------------- 1 | data "aws_iam_policy" "example" { 2 | name = "basic" 3 | } 4 | -------------------------------------------------------------------------------- /terraform/aws/backup/data.aws_iam_roles.tf: -------------------------------------------------------------------------------- 1 | data "aws_iam_roles" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/data.aws_iam_server_certificate.tf: -------------------------------------------------------------------------------- 1 | data "aws_iam_server_certificate" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/data.aws_iam_user.tf: -------------------------------------------------------------------------------- 1 | data "aws_iam_user" "pike" { 2 | user_name = "basic" 3 | } 4 | -------------------------------------------------------------------------------- /terraform/aws/backup/data.aws_iam_users.tf: -------------------------------------------------------------------------------- 1 | data "aws_iam_users" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/data.aws_imagebuilder_components.tf: -------------------------------------------------------------------------------- 1 | data "aws_imagebuilder_components" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/data.aws_imagebuilder_container_recipes.tf: -------------------------------------------------------------------------------- 1 | data "aws_imagebuilder_container_recipes" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/data.aws_inspector_rule_package.tf: -------------------------------------------------------------------------------- 1 | data "aws_inspector_rules_packages" "example" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/data.aws_instance.tf: -------------------------------------------------------------------------------- 1 | data "aws_instance" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/data.aws_key_pair.tf: -------------------------------------------------------------------------------- 1 | data "aws_key_pair" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/data.aws_kms_secret.tf: -------------------------------------------------------------------------------- 1 | data "aws_kms_secret" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/data.aws_lb.tf: -------------------------------------------------------------------------------- 1 | data "aws_lb" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/data.aws_lb_target_group.tf: -------------------------------------------------------------------------------- 1 | data "aws_lb_target_group" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/data.aws_lb_trust_store.tf: -------------------------------------------------------------------------------- 1 | data "aws_lb_trust_store" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/data.aws_lbs.tf: -------------------------------------------------------------------------------- 1 | data "aws_lbs" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/data.aws_mq_broker.tf: -------------------------------------------------------------------------------- 1 | data "aws_mq_broker" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/data.aws_nat_gateway.tf: -------------------------------------------------------------------------------- 1 | data "aws_nat_gateway" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/data.aws_neptune_orderable_db_instance.tf: -------------------------------------------------------------------------------- 1 | data "aws_neptune_orderable_db_instance" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/data.aws_network_interfaces.tf: -------------------------------------------------------------------------------- 1 | data "aws_network_interfaces" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/data.aws_oam_links.tf: -------------------------------------------------------------------------------- 1 | data "aws_oam_links" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/data.aws_oam_sinks.tf: -------------------------------------------------------------------------------- 1 | data "aws_oam_sinks" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/data.aws_outposts_site.tf: -------------------------------------------------------------------------------- 1 | data "aws_outposts_site" "pike" { 2 | name = "example" 3 | } 4 | -------------------------------------------------------------------------------- /terraform/aws/backup/data.aws_outposts_sites.tf: -------------------------------------------------------------------------------- 1 | data "aws_outposts_sites" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/data.aws_polly_voices.tf: -------------------------------------------------------------------------------- 1 | data "aws_polly_voices" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/data.aws_prometheus_workspaces.tf: -------------------------------------------------------------------------------- 1 | data "aws_prometheus_workspaces" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/data.aws_rds_clusters.tf: -------------------------------------------------------------------------------- 1 | data "aws_rds_clusters" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/data.aws_redshift_orderable_cluster.tf: -------------------------------------------------------------------------------- 1 | data "aws_redshift_orderable_cluster" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/data.aws_route53_resolver_endpoint.tf: -------------------------------------------------------------------------------- 1 | data "aws_route53_resolver_endpoint" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/data.aws_route53_resolver_rules.tf: -------------------------------------------------------------------------------- 1 | data "aws_route53_resolver_rules" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/data.aws_ses_active_receipt_rule_set.tf: -------------------------------------------------------------------------------- 1 | data "aws_ses_active_receipt_rule_set" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/data.aws_sns_topic.tf: -------------------------------------------------------------------------------- 1 | data "aws_sns_topic" "example" { 2 | name = "*" 3 | } 4 | -------------------------------------------------------------------------------- /terraform/aws/backup/data.aws_sqs_queues.tf: -------------------------------------------------------------------------------- 1 | data "aws_sqs_queues" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/data.aws_ssm_parameter.tf: -------------------------------------------------------------------------------- 1 | data "aws_ssm_parameter" "example" { 2 | name = "foo" 3 | } 4 | -------------------------------------------------------------------------------- /terraform/aws/backup/data.aws_ssm_patch_baseline.tf: -------------------------------------------------------------------------------- 1 | data "aws_ssm_patch_baseline" "pike" { 2 | owner = "All" 3 | } 4 | -------------------------------------------------------------------------------- /terraform/aws/backup/data.aws_ssmincidents_replication_set.tf: -------------------------------------------------------------------------------- 1 | data "aws_ssmincidents_replication_set" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/data.aws_ssoadmin_instances.tf: -------------------------------------------------------------------------------- 1 | data "aws_ssoadmin_instances" "pike" { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /terraform/aws/backup/data.aws_subnet.tf: -------------------------------------------------------------------------------- 1 | data "aws_subnet" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/data.aws_vpc_endpoint.tf: -------------------------------------------------------------------------------- 1 | data "aws_vpc_endpoint" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/data.aws_vpc_endpoint_service.tf: -------------------------------------------------------------------------------- 1 | data "aws_vpc_endpoint_service" "pike" { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /terraform/aws/backup/data.aws_vpc_ipam_pool.tf: -------------------------------------------------------------------------------- 1 | data "aws_vpc_ipam_pool" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/data.aws_vpc_ipam_pools.tf: -------------------------------------------------------------------------------- 1 | data "aws_vpc_ipam_pools" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/data.aws_vpc_security_group_rule.tf: -------------------------------------------------------------------------------- 1 | data "aws_vpc_security_group_rule" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/data.aws_vpcs.all.tf: -------------------------------------------------------------------------------- 1 | data "aws_vpcs" "list" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/data.aws_vpn_gateway.tf: -------------------------------------------------------------------------------- 1 | data "aws_vpn_gateway" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/data.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/terraform/aws/backup/data.tf -------------------------------------------------------------------------------- /terraform/aws/backup/dataaws_sso_admin_instances.tf: -------------------------------------------------------------------------------- 1 | data "aws_ssoadmin_instances" "example" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/backup/function.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/terraform/aws/backup/function.js -------------------------------------------------------------------------------- /terraform/aws/backup/function.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/terraform/aws/backup/function.zip -------------------------------------------------------------------------------- /terraform/aws/backup/hello.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/terraform/aws/backup/hello.py -------------------------------------------------------------------------------- /terraform/aws/backup/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/terraform/aws/backup/index.js -------------------------------------------------------------------------------- /terraform/aws/backup/test.tf: -------------------------------------------------------------------------------- 1 | resource "aws_s3_bucket" "duff" { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /terraform/aws/backup/test1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/terraform/aws/backup/test1.txt -------------------------------------------------------------------------------- /terraform/aws/backup/tls.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/terraform/aws/backup/tls.tf -------------------------------------------------------------------------------- /terraform/aws/backup/todo.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/terraform/aws/backup/todo.zip -------------------------------------------------------------------------------- /terraform/aws/provider.aws.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/terraform/aws/provider.aws.tf -------------------------------------------------------------------------------- /terraform/aws/role/arns.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/terraform/aws/role/arns.txt -------------------------------------------------------------------------------- /terraform/aws/role/data.aws_iam_roles.tf: -------------------------------------------------------------------------------- 1 | data "aws_iam_roles" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/aws/role/output.tf: -------------------------------------------------------------------------------- 1 | output "role" { 2 | value = aws_iam_role.basic 3 | } 4 | -------------------------------------------------------------------------------- /terraform/aws/role/provider.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/terraform/aws/role/provider.tf -------------------------------------------------------------------------------- /terraform/aws/role/terraform.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/terraform/aws/role/terraform.tf -------------------------------------------------------------------------------- /terraform/aws/set-profile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/terraform/aws/set-profile.sh -------------------------------------------------------------------------------- /terraform/aws/terraform.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/terraform/aws/terraform.tf -------------------------------------------------------------------------------- /terraform/azurerm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/terraform/azurerm/Makefile -------------------------------------------------------------------------------- /terraform/azurerm/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/terraform/azurerm/Readme.md -------------------------------------------------------------------------------- /terraform/azurerm/backup/azurerm_bogus_resource.test.tf: -------------------------------------------------------------------------------- 1 | resource "azurerm_bogus" "test" { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /terraform/azurerm/backup/data.azurerm_attestation.tf: -------------------------------------------------------------------------------- 1 | #data "azurerm_attestation" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/azurerm/backup/data.azurerm_subscriptions.tf: -------------------------------------------------------------------------------- 1 | data "azurerm_subscriptions" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/azurerm/provider.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/terraform/azurerm/provider.tf -------------------------------------------------------------------------------- /terraform/azurerm/role/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/terraform/azurerm/role/Makefile -------------------------------------------------------------------------------- /terraform/azurerm/role/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/terraform/azurerm/role/outputs.tf -------------------------------------------------------------------------------- /terraform/azurerm/terraform.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/terraform/azurerm/terraform.tf -------------------------------------------------------------------------------- /terraform/google/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/terraform/google/Makefile -------------------------------------------------------------------------------- /terraform/google/backup/data.google_compute_addresses.tf: -------------------------------------------------------------------------------- 1 | data "google_compute_addresses" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/duff/data.google_container_aws_versions.tf: -------------------------------------------------------------------------------- 1 | data "google_container_aws_versions" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/duff/data.google_container_azure_versions.tf: -------------------------------------------------------------------------------- 1 | data "google_container_azure_versions" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_apihub_curation.tf: -------------------------------------------------------------------------------- 1 | resource "google_apihub_curation" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_apihub_plugin.tf: -------------------------------------------------------------------------------- 1 | resource "google_apihub_plugin" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_apihub_plugin_instance.tf: -------------------------------------------------------------------------------- 1 | resource "google_apihub_plugin_instance" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_apphub_service.tf: -------------------------------------------------------------------------------- 1 | resource "google_apphub_service" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_apphub_workload.tf: -------------------------------------------------------------------------------- 1 | resource "google_apphub_workload" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_backup_dr_management_server.tf: -------------------------------------------------------------------------------- 1 | resource "google_backup_dr_management_server" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_beyondcorp_app_connection.tf: -------------------------------------------------------------------------------- 1 | resource "google_beyondcorp_app_connection" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_beyondcorp_app_connector.tf: -------------------------------------------------------------------------------- 1 | resource "google_beyondcorp_app_connector" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_beyondcorp_app_gateway.tf: -------------------------------------------------------------------------------- 1 | resource "google_beyondcorp_app_gateway" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_beyondcorp_application.tf: -------------------------------------------------------------------------------- 1 | resource "google_beyondcorp_application" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_beyondcorp_security_gateway.tf: -------------------------------------------------------------------------------- 1 | resource "google_beyondcorp_security_gateway" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_billing_account_iam_member.tf: -------------------------------------------------------------------------------- 1 | resource "google_billing_account_iam_member" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_billing_account_iam_policy.tf: -------------------------------------------------------------------------------- 1 | resource "google_billing_account_iam_policy" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_billing_budget.tf: -------------------------------------------------------------------------------- 1 | resource "google_billing_budget" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_billing_project_info.tf: -------------------------------------------------------------------------------- 1 | resource "google_billing_project_info" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_bogus.pike.tf: -------------------------------------------------------------------------------- 1 | resource "google_bogus" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_chronicle_data_access_label.tf: -------------------------------------------------------------------------------- 1 | resource "google_chronicle_data_access_label" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_chronicle_reference_list.tf: -------------------------------------------------------------------------------- 1 | resource "google_chronicle_reference_list" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_chronicle_retrohunt.tf: -------------------------------------------------------------------------------- 1 | resource "google_chronicle_retrohunt" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_chronicle_watchlist.tf: -------------------------------------------------------------------------------- 1 | resource "google_chronicle_watchlist" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_cloud_run_service_iam_member.tf: -------------------------------------------------------------------------------- 1 | resource "google_cloud_run_service_iam_member" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_cloud_run_service_iam_policy.tf: -------------------------------------------------------------------------------- 1 | resource "google_cloud_run_service_iam_policy" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_cloud_tasks_queue_iam_member.tf: -------------------------------------------------------------------------------- 1 | resource "google_cloud_tasks_queue_iam_member" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_cloud_tasks_queue_iam_policy.tf: -------------------------------------------------------------------------------- 1 | resource "google_cloud_tasks_queue_iam_policy" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_cloudbuildv2_connection.tf: -------------------------------------------------------------------------------- 1 | resource "google_cloudbuildv2_connection" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_cloudbuildv2_repository.tf: -------------------------------------------------------------------------------- 1 | resource "google_cloudbuildv2_repository" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_compute_disk_iam_binding.tf: -------------------------------------------------------------------------------- 1 | resource "google_compute_disk_iam_binding" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_compute_disk_iam_member.tf: -------------------------------------------------------------------------------- 1 | resource "google_compute_disk_iam_member" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_compute_disk_iam_policy.tf: -------------------------------------------------------------------------------- 1 | resource "google_compute_disk_iam_policy" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_compute_forwarding_rule.tf: -------------------------------------------------------------------------------- 1 | resource "google_compute_forwarding_rule" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_compute_image_iam_binding.tf: -------------------------------------------------------------------------------- 1 | resource "google_compute_image_iam_binding" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_compute_image_iam_member.tf: -------------------------------------------------------------------------------- 1 | resource "google_compute_image_iam_member" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_compute_image_iam_policy.tf: -------------------------------------------------------------------------------- 1 | resource "google_compute_image_iam_policy" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_compute_instance_iam_binding.tf: -------------------------------------------------------------------------------- 1 | resource "google_compute_instance_iam_binding" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_compute_instance_iam_member.tf: -------------------------------------------------------------------------------- 1 | resource "google_compute_instance_iam_member" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_compute_instance_iam_policy.tf: -------------------------------------------------------------------------------- 1 | resource "google_compute_instance_iam_policy" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_compute_network_attachment.tf: -------------------------------------------------------------------------------- 1 | resource "google_compute_network_attachment" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_compute_snapshot_iam_binding.tf: -------------------------------------------------------------------------------- 1 | resource "google_compute_snapshot_iam_binding" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_compute_snapshot_iam_member.tf: -------------------------------------------------------------------------------- 1 | resource "google_compute_snapshot_iam_member" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_compute_snapshot_iam_policy.tf: -------------------------------------------------------------------------------- 1 | resource "google_compute_snapshot_iam_policy" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_compute_target_https_proxy.tf: -------------------------------------------------------------------------------- 1 | resource "google_compute_target_https_proxy" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_dataplex_aspect_type.tf: -------------------------------------------------------------------------------- 1 | resource "google_dataplex_aspect_type" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_dataplex_asset.tf: -------------------------------------------------------------------------------- 1 | resource "google_dataplex_asset" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_dataplex_asset_iam_binding.tf: -------------------------------------------------------------------------------- 1 | resource "google_dataplex_asset_iam_binding" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_dataplex_asset_iam_member.tf: -------------------------------------------------------------------------------- 1 | resource "google_dataplex_asset_iam_member" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_dataplex_asset_iam_policy.tf: -------------------------------------------------------------------------------- 1 | resource "google_dataplex_asset_iam_policy" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_dataplex_entry.tf: -------------------------------------------------------------------------------- 1 | resource "google_dataplex_entry" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_dataplex_entry_group.tf: -------------------------------------------------------------------------------- 1 | resource "google_dataplex_entry_group" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_dataplex_entry_type.tf: -------------------------------------------------------------------------------- 1 | resource "google_dataplex_entry_type" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_dataplex_glossary_iam_member.tf: -------------------------------------------------------------------------------- 1 | resource "google_dataplex_glossary_iam_member" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_dataplex_glossary_iam_policy.tf: -------------------------------------------------------------------------------- 1 | resource "google_dataplex_glossary_iam_policy" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_dataplex_lake_iam_binding.tf: -------------------------------------------------------------------------------- 1 | resource "google_dataplex_lake_iam_binding" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_dataplex_lake_iam_member.tf: -------------------------------------------------------------------------------- 1 | resource "google_dataplex_lake_iam_member" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_dataplex_lake_iam_policy.tf: -------------------------------------------------------------------------------- 1 | resource "google_dataplex_lake_iam_policy" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_dataplex_task.tf: -------------------------------------------------------------------------------- 1 | resource "google_dataplex_task" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_dataplex_task_iam_binding.tf: -------------------------------------------------------------------------------- 1 | resource "google_dataplex_task_iam_binding" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_dataplex_task_iam_member.tf: -------------------------------------------------------------------------------- 1 | resource "google_dataplex_task_iam_member" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_dataplex_task_iam_policy.tf: -------------------------------------------------------------------------------- 1 | resource "google_dataplex_task_iam_policy" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_dataplex_zone.tf: -------------------------------------------------------------------------------- 1 | resource "google_dataplex_zone" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_dataplex_zone_iam_binding.tf: -------------------------------------------------------------------------------- 1 | resource "google_dataplex_zone_iam_binding" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_dataplex_zone_iam_member.tf: -------------------------------------------------------------------------------- 1 | resource "google_dataplex_zone_iam_member" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_dataplex_zone_iam_policy.tf: -------------------------------------------------------------------------------- 1 | resource "google_dataplex_zone_iam_policy" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_dataproc_autoscaling_policy.tf: -------------------------------------------------------------------------------- 1 | resource "google_dataproc_autoscaling_policy" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_dataproc_batch.tf: -------------------------------------------------------------------------------- 1 | resource "google_dataproc_batch" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_dataproc_cluster.tf: -------------------------------------------------------------------------------- 1 | resource "google_dataproc_cluster" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_dataproc_cluster_iam_binding.tf: -------------------------------------------------------------------------------- 1 | resource "google_dataproc_cluster_iam_binding" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_dataproc_cluster_iam_member.tf: -------------------------------------------------------------------------------- 1 | resource "google_dataproc_cluster_iam_member" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_dataproc_cluster_iam_policy.tf: -------------------------------------------------------------------------------- 1 | resource "google_dataproc_cluster_iam_policy" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_dataproc_job.tf: -------------------------------------------------------------------------------- 1 | resource "google_dataproc_job" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_dataproc_job_iam_binding.tf: -------------------------------------------------------------------------------- 1 | resource "google_dataproc_job_iam_binding" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_dataproc_job_iam_member.tf: -------------------------------------------------------------------------------- 1 | resource "google_dataproc_job_iam_member" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_dataproc_job_iam_policy.tf: -------------------------------------------------------------------------------- 1 | resource "google_dataproc_job_iam_policy" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_dataproc_session_template.tf: -------------------------------------------------------------------------------- 1 | resource "google_dataproc_session_template" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_dataproc_workflow_template.tf: -------------------------------------------------------------------------------- 1 | resource "google_dataproc_workflow_template" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_dialogflow_agent.tf: -------------------------------------------------------------------------------- 1 | resource "google_dialogflow_agent" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_dialogflow_encryption_spec.tf: -------------------------------------------------------------------------------- 1 | resource "google_dialogflow_encryption_spec" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_dialogflow_entity_type.tf: -------------------------------------------------------------------------------- 1 | resource "google_dialogflow_entity_type" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_dialogflow_fulfillment.tf: -------------------------------------------------------------------------------- 1 | resource "google_dialogflow_fulfillment" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_dialogflow_intent.tf: -------------------------------------------------------------------------------- 1 | resource "google_dialogflow_intent" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_dns_managed_zone_iam_binding.tf: -------------------------------------------------------------------------------- 1 | resource "google_dns_managed_zone_iam_binding" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_dns_managed_zone_iam_member.tf: -------------------------------------------------------------------------------- 1 | resource "google_dns_managed_zone_iam_member" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_dns_managed_zone_iam_policy.tf: -------------------------------------------------------------------------------- 1 | resource "google_dns_managed_zone_iam_policy" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_edgecontainer_cluster.tf: -------------------------------------------------------------------------------- 1 | resource "google_edgecontainer_cluster" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_edgecontainer_node_pool.tf: -------------------------------------------------------------------------------- 1 | resource "google_edgecontainer_node_pool" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_edgecontainer_vpn_connection.tf: -------------------------------------------------------------------------------- 1 | resource "google_edgecontainer_vpn_connection" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_edgenetwork_subnet.tf: -------------------------------------------------------------------------------- 1 | resource "google_edgenetwork_subnet" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_endpoints_service_iam_member.tf: -------------------------------------------------------------------------------- 1 | resource "google_endpoints_service_iam_member" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_endpoints_service_iam_policy.tf: -------------------------------------------------------------------------------- 1 | resource "google_endpoints_service_iam_policy" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_eventarc_channel.tf: -------------------------------------------------------------------------------- 1 | resource "google_eventarc_channel" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_eventarc_enrollment.tf: -------------------------------------------------------------------------------- 1 | resource "google_eventarc_enrollment" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_eventarc_message_bus.tf: -------------------------------------------------------------------------------- 1 | resource "google_eventarc_message_bus" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_eventarc_pipeline.tf: -------------------------------------------------------------------------------- 1 | resource "google_eventarc_pipeline" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_eventarc_trigger.tf: -------------------------------------------------------------------------------- 1 | resource "google_eventarc_trigger" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_folder_iam_binding.tf: -------------------------------------------------------------------------------- 1 | resource "google_folder_iam_binding" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_folder_iam_member.tf: -------------------------------------------------------------------------------- 1 | resource "google_folder_iam_member" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_folder_iam_policy.tf: -------------------------------------------------------------------------------- 1 | resource "google_folder_iam_policy" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_gemini_code_repository_index.tf: -------------------------------------------------------------------------------- 1 | resource "google_gemini_code_repository_index" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_gemini_code_tools_setting.tf: -------------------------------------------------------------------------------- 1 | resource "google_gemini_code_tools_setting" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_gemini_logging_setting.tf: -------------------------------------------------------------------------------- 1 | resource "google_gemini_logging_setting" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_gemini_repository_group.tf: -------------------------------------------------------------------------------- 1 | resource "google_gemini_repository_group" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_gke_hub_feature_iam_binding.tf: -------------------------------------------------------------------------------- 1 | resource "google_gke_hub_feature_iam_binding" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_gke_hub_feature_iam_member.tf: -------------------------------------------------------------------------------- 1 | resource "google_gke_hub_feature_iam_member" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_gke_hub_feature_iam_policy.tf: -------------------------------------------------------------------------------- 1 | resource "google_gke_hub_feature_iam_policy" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_gke_hub_scope_iam_binding.tf: -------------------------------------------------------------------------------- 1 | resource "google_gke_hub_scope_iam_binding" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_gke_hub_scope_iam_member.tf: -------------------------------------------------------------------------------- 1 | resource "google_gke_hub_scope_iam_member" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_gke_hub_scope_iam_policy.tf: -------------------------------------------------------------------------------- 1 | resource "google_gke_hub_scope_iam_policy" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_iam_workforce_pool.tf: -------------------------------------------------------------------------------- 1 | resource "google_iam_workforce_pool" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_iam_workforce_pool_provider.tf: -------------------------------------------------------------------------------- 1 | resource "google_iam_workforce_pool_provider" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_iap_brand.tf: -------------------------------------------------------------------------------- 1 | resource "google_iap_brand" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_iap_client.tf: -------------------------------------------------------------------------------- 1 | resource "google_iap_client" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_iap_tunnel_dest_group.tf: -------------------------------------------------------------------------------- 1 | resource "google_iap_tunnel_dest_group" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_iap_tunnel_iam_binding.tf: -------------------------------------------------------------------------------- 1 | resource "google_iap_tunnel_iam_binding" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_iap_tunnel_iam_member.tf: -------------------------------------------------------------------------------- 1 | resource "google_iap_tunnel_iam_member" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_iap_tunnel_iam_policy.tf: -------------------------------------------------------------------------------- 1 | resource "google_iap_tunnel_iam_policy" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_iap_web_iam_binding.tf: -------------------------------------------------------------------------------- 1 | resource "google_iap_web_iam_binding" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_iap_web_iam_member.tf: -------------------------------------------------------------------------------- 1 | resource "google_iap_web_iam_member" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_iap_web_iam_policy.tf: -------------------------------------------------------------------------------- 1 | resource "google_iap_web_iam_policy" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_kms_key_ring_iam_binding.tf: -------------------------------------------------------------------------------- 1 | resource "google_kms_key_ring_iam_binding" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_kms_key_ring_iam_member.tf: -------------------------------------------------------------------------------- 1 | resource "google_kms_key_ring_iam_member" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_logging_folder_exclusion.tf: -------------------------------------------------------------------------------- 1 | resource "google_logging_folder_exclusion" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_logging_folder_settings.tf: -------------------------------------------------------------------------------- 1 | resource "google_logging_folder_settings" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_logging_folder_sink.tf: -------------------------------------------------------------------------------- 1 | resource "google_logging_folder_sink" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_logging_linked_dataset.tf: -------------------------------------------------------------------------------- 1 | resource "google_logging_linked_dataset" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_logging_metric.tf: -------------------------------------------------------------------------------- 1 | resource "google_logging_metric" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_logging_organization_sink.tf: -------------------------------------------------------------------------------- 1 | resource "google_logging_organization_sink" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_logging_project_exclusion.tf: -------------------------------------------------------------------------------- 1 | resource "google_logging_project_exclusion" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_logging_project_sink.tf: -------------------------------------------------------------------------------- 1 | resource "google_logging_project_sink" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_managed_kafka_cluster.tf: -------------------------------------------------------------------------------- 1 | resource "google_managed_kafka_cluster" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_managed_kafka_connector.tf: -------------------------------------------------------------------------------- 1 | resource "google_managed_kafka_connector" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_managed_kafka_topic.tf: -------------------------------------------------------------------------------- 1 | resource "google_managed_kafka_topic" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_memcache_instance.tf: -------------------------------------------------------------------------------- 1 | resource "google_memcache_instance" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_memorystore_instance.tf: -------------------------------------------------------------------------------- 1 | resource "google_memorystore_instance" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_model_armor_floorsetting.tf: -------------------------------------------------------------------------------- 1 | resource "google_model_armor_floorsetting" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_model_armor_template.tf: -------------------------------------------------------------------------------- 1 | resource "google_model_armor_template" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_monitoring_alert_policy.tf: -------------------------------------------------------------------------------- 1 | resource "google_monitoring_alert_policy" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_monitoring_dashboard.tf: -------------------------------------------------------------------------------- 1 | resource "google_monitoring_dashboard" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_monitoring_group.tf: -------------------------------------------------------------------------------- 1 | resource "google_monitoring_group" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_monitoring_metric_descriptor.tf: -------------------------------------------------------------------------------- 1 | resource "google_monitoring_metric_descriptor" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_monitoring_service.tf: -------------------------------------------------------------------------------- 1 | resource "google_monitoring_service" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_monitoring_slo.tf: -------------------------------------------------------------------------------- 1 | resource "google_monitoring_slo" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_notebooks_environment.tf: -------------------------------------------------------------------------------- 1 | resource "google_notebooks_environment" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_notebooks_instance.tf: -------------------------------------------------------------------------------- 1 | resource "google_notebooks_instance" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_notebooks_runtime.tf: -------------------------------------------------------------------------------- 1 | resource "google_notebooks_runtime" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_notebooks_runtime_iam_member.tf: -------------------------------------------------------------------------------- 1 | resource "google_notebooks_runtime_iam_member" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_notebooks_runtime_iam_policy.tf: -------------------------------------------------------------------------------- 1 | resource "google_notebooks_runtime_iam_policy" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_organization_iam_binding.tf: -------------------------------------------------------------------------------- 1 | resource "google_organization_iam_binding" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_organization_iam_member.tf: -------------------------------------------------------------------------------- 1 | resource "google_organization_iam_member" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_organization_iam_policy.tf: -------------------------------------------------------------------------------- 1 | resource "google_organization_iam_policy" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_os_config_guest_policies.tf: -------------------------------------------------------------------------------- 1 | resource "google_os_config_guest_policies" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_os_config_patch_deployment.tf: -------------------------------------------------------------------------------- 1 | resource "google_os_config_patch_deployment" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_parallelstore_instance.tf: -------------------------------------------------------------------------------- 1 | resource "google_parallelstore_instance" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_project_services.tf: -------------------------------------------------------------------------------- 1 | resource "google_project_services" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_pubsub_schema_iam_binding.tf: -------------------------------------------------------------------------------- 1 | resource "google_pubsub_schema_iam_binding" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_pubsub_schema_iam_member.tf: -------------------------------------------------------------------------------- 1 | resource "google_pubsub_schema_iam_member" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_pubsub_schema_iam_policy.tf: -------------------------------------------------------------------------------- 1 | resource "google_pubsub_schema_iam_policy" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_redis_cluster.tf: -------------------------------------------------------------------------------- 1 | resource "google_redis_cluster" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_runtimeconfig_variable.tf: -------------------------------------------------------------------------------- 1 | resource "google_runtimeconfig_variable" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_sql_ssl_cert.tf: -------------------------------------------------------------------------------- 1 | resource "google_sql_ssl_cert" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_tpu_node.tf: -------------------------------------------------------------------------------- 1 | resource "google_tpu_node" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_transcoder_job.tf: -------------------------------------------------------------------------------- 1 | resource "google_transcoder_job" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_transcoder_job_template.tf: -------------------------------------------------------------------------------- 1 | resource "google_transcoder_job_template" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_vertex_ai_cache_config.tf: -------------------------------------------------------------------------------- 1 | resource "google_vertex_ai_cache_config" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_vmwareengine_cluster.tf: -------------------------------------------------------------------------------- 1 | resource "google_vmwareengine_cluster" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_vmwareengine_network.tf: -------------------------------------------------------------------------------- 1 | resource "google_vmwareengine_network" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_vmwareengine_subnet.tf: -------------------------------------------------------------------------------- 1 | resource "google_vmwareengine_subnet" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/google_vpc_access_connector.tf: -------------------------------------------------------------------------------- 1 | resource "google_vpc_access_connector" "pike" {} 2 | -------------------------------------------------------------------------------- /terraform/google/backup/local.tf: -------------------------------------------------------------------------------- 1 | locals { 2 | test = 1 3 | } 4 | -------------------------------------------------------------------------------- /terraform/google/role/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/terraform/google/role/Makefile -------------------------------------------------------------------------------- /terraform/google/role/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/terraform/google/role/output.tf -------------------------------------------------------------------------------- /terraform/google/terraform.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/terraform/google/terraform.tf -------------------------------------------------------------------------------- /terraform/google/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/terraform/google/variables.tf -------------------------------------------------------------------------------- /test/DATASOURCE_REQUIREMENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/test/DATASOURCE_REQUIREMENTS.md -------------------------------------------------------------------------------- /testdata/mixed/aws_instance.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesWoolfenden/pike/HEAD/testdata/mixed/aws_instance.tf -------------------------------------------------------------------------------- /testdata/modules/examples/local/module.local.tf: -------------------------------------------------------------------------------- 1 | module "local" { 2 | source = "../../" 3 | } 4 | -------------------------------------------------------------------------------- /testdata/modules/examples/rubbish/module.local.tf: -------------------------------------------------------------------------------- 1 | module "local" { 2 | source = "jibberish" 3 | } 4 | -------------------------------------------------------------------------------- /testdata/readme/empty/Readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/readme/exists-notags/Readme.md: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------