Skip to content
Merged
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
4 changes: 2 additions & 2 deletions examples/fabric/cloud_router/example_2/Pulumi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,5 @@ resources:
project:
projectId: '776847000642406'
marketplaceSubscription:
type: AWS_MARKETPLACE_SUBSCRIPTION
uuid: 2823b8ae07-a2a2-45b4-a658-c3542bb24e9
- type: AWS_MARKETPLACE_SUBSCRIPTION
uuid: 2823b8ae07-a2a2-45b4-a658-c3542bb24e9
14 changes: 7 additions & 7 deletions examples/fabric/connection/example_port_to_aws/go/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -54,14 +54,14 @@ func main() {
},
},
},
AdditionalInfo: pulumi.StringMapArray{
pulumi.StringMap{
"key": pulumi.String("accessKey"),
"value": pulumi.String("<aws_access_key>"),
AdditionalInfo: pulumi.MapArray{
pulumi.Map{
"key": pulumi.Any("accessKey"),
"value": pulumi.Any("<aws_access_key>"),
},
pulumi.StringMap{
"key": pulumi.String("secretKey"),
"value": pulumi.String("<aws_secret_key>"),
pulumi.Map{
"key": pulumi.Any("secretKey"),
"value": pulumi.Any("<aws_secret_key>"),
},
},
})
Expand Down
2 changes: 1 addition & 1 deletion examples/fabric/connection_route_aggregation/Pulumi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: equinix-fabric-connection_route_aggregation
runtime: yaml
resources:
policyAttachment:
type: equinix:fabric:ConnectionRouteAggregation
type: equinix:fabricConnectionRouteAggregation
name: policy_attachment
properties:
routeAggregationId: <route_aggregation_id>
Expand Down
2 changes: 1 addition & 1 deletion examples/fabric/connection_route_filter/Pulumi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: equinix-fabric-connection_route_filter
runtime: yaml
resources:
policyAttachment:
type: equinix:fabric:ConnectionRouteFilter
type: equinix:fabricConnectionRouteFilter
name: policy_attachment
properties:
connectionId: <connection_uuid>
Expand Down
4 changes: 2 additions & 2 deletions examples/fabric/port/Pulumi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: equinix-fabric-port
runtime: yaml
resources:
order:
type: equinix:fabric:Port
type: equinix:fabricPort
properties:
type: XF_PORT
connectivitySourceType: COLO
Expand Down Expand Up @@ -41,6 +41,6 @@ resources:
- type: NOTIFICATION
registeredUsers:
- <username>
additionalInfos:
additionalInfo:
- key: lagType
value: New
2 changes: 1 addition & 1 deletion examples/fabric/precision_time_service/Pulumi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: equinix-fabric-precision_time_service
runtime: yaml
resources:
ptp:
type: equinix:fabric:PrecisionTimeService
type: equinix:fabricPrecisionTimeService
properties:
type: PTP
name: tf_acc_eptptp_PFCR
Expand Down
2 changes: 1 addition & 1 deletion examples/fabric/route_aggregation/Pulumi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: equinix-fabric-route_aggregation
runtime: yaml
resources:
new-ra:
type: equinix:fabric:RouteAggregation
type: equinix:fabricRouteAggregation
properties:
type: BGP_IPv4_PREFIX_AGGREGATION
name: new-ra
Expand Down
2 changes: 1 addition & 1 deletion examples/fabric/route_aggregation_rule/Pulumi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: equinix-fabric-route_aggregation_rule
runtime: yaml
resources:
raRule:
type: equinix:fabric:RouteAggregationRule
type: equinix:fabricRouteAggregationRule
name: ra_rule
properties:
routeAggregationId: <route_aggregation_id>
Expand Down
2 changes: 1 addition & 1 deletion examples/fabric/route_filter_rule/Pulumi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: equinix-fabric-route_filter_rule
runtime: yaml
resources:
rfRule:
type: equinix:fabric:RouteFilterRule
type: equinix:fabricRouteFilterRule
name: rf_rule
properties:
routeFilterId: <route_filter_policy_id>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,22 +3,22 @@ name: equinix-fabric-service_token-example_aside_colo_service_token
runtime: yaml
resources:
test:
type: equinix:fabric:ServiceToken
type: equinix:fabricServiceToken
properties:
type: VC_TOKEN
description: Aside COLO Service Token
expirationDateTime: 2025-01-18T06:43:49.981Z
serviceTokenConnections:
serviceTokenConnection:
- type: EVPL_VC
bandwidthLimit: 1000
aSides:
aSide:
- accessPointSelectors:
- type: COLO
port:
uuid: <port_uuid>
- uuid: <port_uuid>
linkProtocol:
type: DOT1Q
vlanTag: '2987'
- type: DOT1Q
vlanTag: '2987'
notifications:
- type: ALL
emails:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,25 +3,25 @@ name: equinix-fabric-service_token-example_zside_colo_service_token
runtime: yaml
resources:
test:
type: equinix:fabric:ServiceToken
type: equinix:fabricServiceToken
properties:
type: VC_TOKEN
description: Zside COLO Service Token
expirationDateTime: 2025-01-18T06:43:49.981Z
serviceTokenConnections:
serviceTokenConnection:
- type: EVPL_VC
supportedBandwidths:
- 50
- 200
- 10000
zSides:
zSide:
- accessPointSelectors:
- type: COLO
port:
uuid: <port_uuid>
- uuid: <port_uuid>
linkProtocol:
type: DOT1Q
vlanTag: '2087'
- type: DOT1Q
vlanTag: '2087'
notifications:
- type: ALL
emails:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,22 +3,22 @@ name: equinix-fabric-service_token-example_zside_network_service_token
runtime: yaml
resources:
test:
type: equinix:fabric:ServiceToken
type: equinix:fabricServiceToken
properties:
type: VC_TOKEN
description: Zside Network Service Token
expirationDateTime: 2025-01-18T06:43:49.986Z
serviceTokenConnections:
serviceTokenConnection:
- type: EVPL_VC
supportedBandwidths:
- 50
- 200
- 10000
zSides:
zSide:
- accessPointSelectors:
- type: NETWORK
network:
uuid: <network_uuid>
- uuid: <network_uuid>
notifications:
- type: ALL
emails:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,25 +3,25 @@ name: equinix-fabric-service_token-example_zside_vd_service_token
runtime: yaml
resources:
test:
type: equinix:fabric:ServiceToken
type: equinix:fabricServiceToken
properties:
type: VC_TOKEN
description: Zside VD Service Token
expirationDateTime: 2025-01-18T06:43:49.986Z
serviceTokenConnections:
serviceTokenConnection:
- type: EVPL_VC
supportedBandwidths:
- 50
- 200
- 10000
zSides:
zSide:
- accessPointSelectors:
- type: VD
virtualDevice:
type: EDGE
uuid: <device_uuid>
- type: EDGE
uuid: <device_uuid>
interface:
type: NETWORK
- type: NETWORK
notifications:
- type: ALL
emails:
Expand Down
2 changes: 1 addition & 1 deletion examples/fabric/stream/Pulumi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: equinix-fabric-stream
runtime: yaml
resources:
newStream:
type: equinix:fabric:Stream
type: equinix:fabricStream
name: new_stream
properties:
type: TELEMETRY_STREAM
Expand Down
6 changes: 3 additions & 3 deletions examples/fabric/stream_alert_rule/Pulumi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: equinix-fabric-stream_alert_rule
runtime: yaml
resources:
newStreamAlertRule:
type: equinix:fabric:StreamAlertRule
type: equinix:fabricStreamAlertRule
name: new_stream_alert_rule
properties:
streamId: <stream_id>
Expand All @@ -12,15 +12,15 @@ resources:
description: <description>
enabled: true
metricSelector:
includes:
include:
- equinix.fabric.connection.bandwidth_tx.usage
detectionMethod:
operand: ABOVE
windowSize: <window_size>
warningThreshold: <warning_threshold>
criticalThreshold: <critical_threshold>
resourceSelector:
includes:
include:
- '*/connections/<connection_id>'
outputs:
streamAlertRuleType: ${newStreamAlertRule.type}
Expand Down
2 changes: 1 addition & 1 deletion examples/fabric/stream_attachment/Pulumi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: equinix-fabric-stream_attachment
runtime: yaml
resources:
asset:
type: equinix:fabric:StreamAttachment
type: equinix:fabricStreamAttachment
properties:
assetId: <id_of_the_asset_being_attached>
asset: <asset_group>
Expand Down
20 changes: 10 additions & 10 deletions examples/fabric/stream_subscription/Pulumi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,18 @@ name: equinix-fabric-stream_subscription
runtime: yaml
resources:
SPLUNK:
type: equinix:fabric:StreamSubscription
type: equinix:fabricStreamSubscription
properties:
type: STREAM_SUBSCRIPTION
name: <name>
description: <description>
streamId: <stream_id>
enabled: true
eventSelector:
includes:
include:
- equinix.fabric.connection.*
metricSelector:
includes:
include:
- equinix.fabric.connection.*
sink:
type: SPLUNK_HEC
Expand All @@ -27,7 +27,7 @@ resources:
type: ACCESS_TOKEN
accessToken: <splunk_access_token>
SLACK:
type: equinix:fabric:StreamSubscription
type: equinix:fabricStreamSubscription
properties:
type: STREAM_SUBSCRIPTION
name: <name>
Expand All @@ -38,7 +38,7 @@ resources:
type: SLACK
uri: <slack_uri>
PAGER_DUTY:
type: equinix:fabric:StreamSubscription
type: equinix:fabricStreamSubscription
properties:
type: STREAM_SUBSCRIPTION
name: <name>
Expand All @@ -55,7 +55,7 @@ resources:
type: INTEGRATION_KEY
integrationKey: <pager_duty_integration_key>
DATADOG:
type: equinix:fabric:StreamSubscription
type: equinix:fabricStreamSubscription
properties:
type: STREAM_SUBSCRIPTION
name: <name>
Expand All @@ -74,7 +74,7 @@ resources:
type: API_KEY
apiKey: <datadog_api_key>
MSTEAMS:
type: equinix:fabric:StreamSubscription
type: equinix:fabricStreamSubscription
properties:
type: STREAM_SUBSCRIPTION
name: <name>
Expand All @@ -85,7 +85,7 @@ resources:
type: TEAMS
uri: <msteams_uri>
servicenow:
type: equinix:fabric:StreamSubscription
type: equinix:fabricStreamSubscription
properties:
type: STREAM_SUBSCRIPTION
name: <name>
Expand All @@ -102,7 +102,7 @@ resources:
username: <servicenow_username>
password: <servicenow_password>
webhook:
type: equinix:fabric:StreamSubscription
type: equinix:fabricStreamSubscription
properties:
type: STREAM_SUBSCRIPTION
name: <name>
Expand All @@ -116,7 +116,7 @@ resources:
eventUri: <webhook_event_uri>
metricUri: <webhook_metric_uri>
grafana:
type: equinix:fabric:StreamSubscription
type: equinix:fabricStreamSubscription
properties:
type: STREAM_SUBSCRIPTION
name: <name>
Expand Down
Loading
Loading