Skip to content

Commit

Permalink
Making terraform tab visible by default. (#299)
Browse files Browse the repository at this point in the history
Signed-off-by: Gordonby <gordon.byers@microsoft.com>
  • Loading branch information
Gordon Byers committed Jun 7, 2022
1 parent b4475d5 commit ae75efb
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 32 deletions.
63 changes: 31 additions & 32 deletions helper/src/components/deployTab.js
Original file line number Diff line number Diff line change
Expand Up @@ -492,38 +492,37 @@ ${postscript_cluster.replaceAll('"', '\\"')}
}
</PivotItem>

{terraformFeatureFlag && (
<PivotItem headerText="Provision Environment (Terraform)" itemKey="deployTf" itemIcon="FileCode">
<Stack horizontal horizontalAlign="space-between" styles={{root: { width: '100%', marginTop: '10px'}}}>
<Stack.Item>
<Label >Commands to deploy your fully operational environment</Label>
<Text>
Requires Terraform, or execute in the <Link target="_cs" href="http://shell.azure.com/">Azure Cloud Shell</Link>.
</Text>
</Stack.Item>

<Stack.Item align="end">
<Stack horizontal tokens={{childrenGap: 5}}>
<Dropdown
label='Template Version'
disabled={process.env.REACT_APP_TEMPLATERELEASE !== undefined}
selectedKey={deploy.selectedTemplate}
onChange={(ev, { key }) => updateFn('selectedTemplate', key)}
options={deploy.templateVersions}
styles={{ dropdown: { width: 200 } }}
/>
</Stack>
</Stack.Item>
</Stack>

<CodeBlock deploycmd={deployTfcmd} testId={'deploy-deployTfcmd'} lang="bash"/>
<CodeBlock deploycmd={deployTfProviders} testId={'deploy-deployTfProviders'} lang="terraform" filename="providers.tf" />
<CodeBlock deploycmd={deployTfMain} testId={'deploy-deployTfMain'} lang="terraform" filename="main.tf" />
<CodeBlock deploycmd={deployTfVar} testId={'deploy-deployTfVar'} lang="terraform" filename="variables.tf" />
<CodeBlock deploycmd={deployTfOutput} testId={'deploy-deployTfOut'} lang="terraform" filename="outputs.tf" />

</PivotItem>
)}
<PivotItem headerText="Provision Environment (Terraform)" itemKey="deployTf" itemIcon="FileCode">
<Stack horizontal horizontalAlign="space-between" styles={{root: { width: '100%', marginTop: '10px'}}}>
<Stack.Item>
<Label >Commands to deploy your fully operational environment</Label>
<Text>
Requires Terraform, or execute in the <Link target="_cs" href="http://shell.azure.com/">Azure Cloud Shell</Link>.
</Text>
</Stack.Item>

<Stack.Item align="end">
<Stack horizontal tokens={{childrenGap: 5}}>
<Dropdown
label='Template Version'
disabled={process.env.REACT_APP_TEMPLATERELEASE !== undefined}
selectedKey={deploy.selectedTemplate}
onChange={(ev, { key }) => updateFn('selectedTemplate', key)}
options={deploy.templateVersions}
styles={{ dropdown: { width: 200 } }}
/>
</Stack>
</Stack.Item>
</Stack>

<CodeBlock deploycmd={deployTfcmd} testId={'deploy-deployTfcmd'} lang="bash"/>
<CodeBlock deploycmd={deployTfProviders} testId={'deploy-deployTfProviders'} lang="terraform" filename="providers.tf" />
<CodeBlock deploycmd={deployTfMain} testId={'deploy-deployTfMain'} lang="terraform" filename="main.tf" />
<CodeBlock deploycmd={deployTfVar} testId={'deploy-deployTfVar'} lang="terraform" filename="variables.tf" />
<CodeBlock deploycmd={deployTfOutput} testId={'deploy-deployTfOut'} lang="terraform" filename="outputs.tf" />

</PivotItem>

<PivotItem headerText="Post Configuration" itemIcon="ConfigurationSolid">
<Label key="post-label" style={{marginTop: '10px'}}>Commands to install kubernetes packages into your cluster</Label>,

Expand Down
3 changes: 3 additions & 0 deletions samples/terraform/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Terraform Samples

Placeholder for samples of using AKSC within a wider terraform deployment

0 comments on commit ae75efb

Please sign in to comment.