Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Upgrade terraform-provider-equinix to v2.10.0 #234

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
494 changes: 494 additions & 0 deletions docs/resource/equinix_network_device.examples.md

Large diffs are not rendered by default.

Empty file.
23 changes: 23 additions & 0 deletions examples/fabric/service_token/Pulumi.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# WARNING: This is an autogenerated file - manual changes will be overwritten if not made via ./scripts/generate_examples.sh
name: equinix-fabric-service_token
runtime: yaml
resources:
test:
type: equinix:fabricServiceToken
properties:
type: VC_TOKEN
expirationDateTime: 2025-01-18T06:43:49.986Z
serviceTokenConnections:
- type: EVPL_VC
supportedBandwidths:
- 50
- 200
- 10000
zSides:
- accessPointSelectors:
- type: VD
virtualDevice:
type: EDGE
uuid: <device_uuid>
interface:
type: NETWORK
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Pulumi" Version="3.*" />
<PackageReference Include="Pulumi.Equinix" Version="(, 1.0.0)" />
<PackageReference Include="Pulumi.Std" Version="1.7.3" />
<PackageReference Include="Pulumi.Equinix" Version="(, 1.0.0)" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# WARNING: This is an autogenerated file - manual changes will be overwritten if not made via ./scripts/generate_examples.sh
name: equinix-network-device-example_c8000v_byol_with_bandwidth_throughput
runtime: yaml
resources:
c8000v-byol-throughput:
type: equinix:networkedge:Device
properties:
name: tf-c8000v-byol
metroCode: ${sv.metroCode}
typeCode: C8000V
selfManaged: true
byol: true
packageCode: VM100
notifications:
- [email protected]
- [email protected]
- [email protected]
termLength: 12
accountNumber: ${sv.number}
version: 17.11.01a
interfaceCount: 10
coreCount: 2
throughput: '100'
throughputUnit: Mbps
sshKey:
username: test
keyName: test-key
aclTemplateId: 0bff6e05-f0e7-44cd-804a-25b92b835f8b
variables:
# Create C8000V BYOL device with numeric bandwidth throughput information
sv:
fn::invoke:
Function: equinix:networkedge:getAccount
Arguments:
metroCode: SV
Loading
Loading