Skip to content

Commit 91fac64

Browse files
cisco 2.3.7.9 version
1 parent f4a3cb0 commit 91fac64

File tree

1 file changed

+4
-4
lines changed
  • examples/samples/data-sources/catalystcenter_applications

1 file changed

+4
-4
lines changed
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
terraform {
22
required_providers {
33
catalystcenter = {
4-
version = "1.0.0-beta"
4+
version = "1.1.0-beta"
55
source = "hashicorp.com/edu/catalystcenter"
66
# "hashicorp.com/edu/catalystcenter" is the local built source, change to "cisco-en-programmability/catalystcenter" to use downloaded version from registry
77
}
@@ -11,13 +11,13 @@ terraform {
1111
provider "catalystcenter" {
1212
}
1313

14-
data "catalystcenter_applications" "example" {
14+
data "catalystcenter_applications_v2" "example" {
1515
provider = catalystcenter
1616
# limit = 1
17-
# name = "intrinsa"
17+
name = "intrinsa"
1818
# offset = 1
1919
}
2020

2121
output "catalystcenter_applications_example" {
22-
value = data.catalystcenter_applications.example.items
22+
value = data.catalystcenter_applications_v2.example.items
2323
}

0 commit comments

Comments
 (0)