github.com/someshkoli/terratest@v0.41.1/docs/_data/examples.yml (about)

     1  - id: terraform-hello-world
     2    name: Terraform Hello, World Example
     3    image: /assets/img/logos/terraform-logo.png
     4    files:
     5      - url: /examples/terraform-hello-world-example/main.tf
     6        id: terraform_code
     7      - url: /test/terraform_hello_world_example_test.go
     8        id: test_code
     9        default: true
    10    learn_more:
    11      - name: Terraform Hello, World
    12        url: https://github.com/gruntwork-io/terratest/tree/master/examples/terraform-hello-world-example
    13  
    14  - id: packer-hello-world
    15    name: Packer Hello, World Example
    16    image: /assets/img/logos/packer-logo.png
    17    files:
    18      - url: /examples/packer-hello-world-example/build.pkr.hcl
    19        id: packer_code
    20      - url: /test/packer_hello_world_example_test.go
    21        id: test_code
    22        default: true
    23    learn_more:
    24      - name: Packer Hello, World
    25        url: https://github.com/gruntwork-io/terratest/tree/master/examples/packer-hello-world-example
    26  
    27  - id: docker-hello-world
    28    name: Docker Hello, World Example
    29    image: /assets/img/logos/docker-logo.png
    30    files:
    31      - url: /examples/docker-hello-world-example/Dockerfile
    32        id: docker_code
    33        prism_lang: docker
    34      - url: /test/docker_hello_world_example_test.go
    35        id: test_code
    36        default: true
    37    learn_more:
    38      - name: Docker Hello, World
    39        url: https://github.com/gruntwork-io/terratest/tree/master/examples/docker-hello-world-example
    40  
    41  - id: kubernetes-hello-world
    42    name: Kubernetes Hello, World Example
    43    image: /assets/img/logos/kubernetes-logo.png
    44    files:
    45      - url: /examples/kubernetes-hello-world-example/hello-world-deployment.yml
    46        id: k8s_code
    47      - url: /test/kubernetes_hello_world_example_test.go
    48        id: test_code
    49        default: true
    50    learn_more:
    51      - name: Kubernetes Hello, World
    52        url: https://github.com/gruntwork-io/terratest/tree/master/examples/kubernetes-hello-world-example
    53  
    54  - id: terragrunt-hello-world
    55    name: Terragrunt Example
    56    image: /assets/img/logos/terragrunt-logo.png
    57    files:
    58      - url: /examples/terragrunt-example/terragrunt.hcl
    59        id: terragrunt_code
    60      - url: /examples/terragrunt-example/main.tf
    61        id: terraform_code
    62      - url: /test/terragrunt_example_test.go
    63        id: test_code
    64        default: true
    65    learn_more:
    66      - name: Terragrunt
    67        url: https://github.com/gruntwork-io/terratest/tree/master/examples/terragrunt-example
    68  
    69  - id: aws-hello-world
    70    name: AWS Hello, World Example
    71    image: /assets/img/logos/aws-logo.png
    72    files:
    73      - url: /examples/terraform-aws-hello-world-example/main.tf
    74        id: terraform_code
    75      - url: /test/terraform_aws_hello_world_example_test.go
    76        id: test_code
    77        default: true
    78    learn_more:
    79      - name: AWS Hello, World
    80        url: https://github.com/gruntwork-io/terratest/tree/master/examples/terraform-aws-hello-world-example
    81  
    82  - id: gcp-hello-world
    83    name: GCP Hello, World Example
    84    image: /assets/img/logos/gcp-logo.png
    85    files:
    86      - url: /examples/terraform-gcp-hello-world-example/main.tf
    87        id: terraform_code
    88      - url: /test/gcp/terraform_gcp_hello_world_example_test.go
    89        id: test_code
    90        default: true
    91    learn_more:
    92      - name: GCP Hello, World
    93        url: https://github.com/gruntwork-io/terratest/tree/master/examples/terraform-gcp-hello-world-example
    94  
    95  - id: azure-basic
    96    name: Azure Hello, World Example
    97    image: /assets/img/logos/azure-logo.png
    98    files:
    99      - url: /examples/azure/terraform-azure-example/main.tf
   100        id: terraform_main_code
   101      - url: /examples/azure/terraform-azure-example/outputs.tf
   102        id: terraform_output_code
   103      - url: /examples/azure/terraform-azure-example/variables.tf
   104        id: terraform_var_code
   105      - url: /test/azure/terraform_azure_example_test.go
   106        id: test_code
   107        default: true
   108    learn_more:
   109      - name: Terraform Azure Example
   110        url: https://github.com/gruntwork-io/terratest/tree/master/examples/azure/terraform-azure-example
   111  
   112  - id: opa-terraform
   113    name: OPA Terraform Example
   114    image: /assets/img/logos/opa-logo.png
   115    files:
   116      - url: /examples/terraform-opa-example/pass/main_pass.tf
   117        id: pass_terraform_main_code
   118      - url: /examples/terraform-opa-example/fail/main_fail.tf
   119        id: fail_terraform_main_code
   120      - url: /examples/terraform-opa-example/policy/enforce_source.rego
   121        id: policy_main_code
   122      - url: /test/terraform_opa_example_test.go
   123        id: test_code
   124        default: true
   125    learn_more:
   126      - name: Terraform OPA Example
   127        url: https://github.com/gruntwork-io/terratest/tree/master/examples/terraform-opa-example
   128  
   129  - id: client-factory
   130    name: Azure Client Factory
   131    display_in_examples: false
   132    files:
   133      - url: /modules/azure/client_factory.go
   134        id: client_factory_code
   135      - url: /modules/azure/client_factory_test.go
   136        id: client_factory_test
   137      - url: /modules/azure/compute.go
   138        id: client_factory_helper