summaryrefslogtreecommitdiff
path: root/spec/frontend/packages_and_registries/infrastructure_registry/components/__snapshots__/terraform_installation_spec.js.snap
blob: 427160b45e39abdb69089b624c99c152a29b61c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
// Jest Snapshot v1, https://goo.gl/fbAQLP

exports[`TerraformInstallation renders all the messages 1`] = `
<div>
  <h3
    class="gl-font-lg"
  >
    Provision instructions
  </h3>
   
  <code-instruction-stub
    copytext="Copy Terraform Command"
    instruction="module \\"Test/system-22\\" {
  source = \\"foo/Test/system-22\\"
  version = \\"0.1\\"
}"
    label="Copy and paste into your Terraform configuration, insert the variables, and run Terraform init:"
    multiline="true"
    trackingaction=""
    trackinglabel=""
  />
   
  <h3
    class="gl-font-lg"
  >
    Registry setup
  </h3>
   
  <code-instruction-stub
    copytext="Copy Terraform Setup Command"
    instruction="credentials \\"gitlab.com\\" {
  token = \\"<TOKEN>\\"
}"
    label="To authorize access to the Terraform registry:"
    multiline="true"
    trackingaction=""
    trackinglabel=""
  />
   
  <gl-sprintf-stub
    message="For more information on the Terraform registry, %{linkStart}see our documentation%{linkEnd}."
  />
</div>
`;