index.html 260 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621116221162311624116251162611627116281162911630116311163211633116341163511636116371163811639116401164111642116431164411645116461164711648116491165011651116521165311654116551165611657116581165911660116611166211663116641166511666116671166811669116701167111672116731167411675116761167711678116791168011681116821168311684116851168611687116881168911690116911169211693116941169511696116971169811699117001170111702117031170411705117061170711708117091171011711117121171311714117151171611717117181171911720117211172211723117241172511726117271172811729117301173111732117331173411735117361173711738117391174011741117421174311744117451174611747117481174911750117511175211753117541175511756117571175811759117601176111762117631176411765117661176711768117691177011771117721177311774117751177611777117781177911780117811178211783117841178511786117871178811789117901179111792117931179411795117961179711798117991180011801118021180311804118051180611807118081180911810118111181211813118141181511816118171181811819118201182111822118231182411825118261182711828118291183011831118321183311834118351183611837118381183911840118411184211843118441184511846118471184811849118501185111852118531185411855118561185711858118591186011861118621186311864118651186611867118681186911870118711187211873118741187511876118771187811879118801188111882118831188411885118861188711888118891189011891118921189311894118951189611897118981189911900119011190211903119041190511906119071190811909119101191111912119131191411915119161191711918119191192011921119221192311924119251192611927119281192911930119311193211933119341193511936119371193811939119401194111942119431194411945119461194711948119491195011951119521195311954119551195611957119581195911960119611196211963119641196511966119671196811969119701197111972119731197411975119761197711978119791198011981119821198311984119851198611987119881198911990119911199211993119941199511996119971199811999120001200112002120031200412005120061200712008120091201012011120121201312014120151201612017120181201912020120211202212023120241202512026120271202812029120301203112032120331203412035120361203712038120391204012041120421204312044120451204612047120481204912050120511205212053120541205512056120571205812059120601206112062120631206412065120661206712068120691207012071120721207312074120751207612077120781207912080120811208212083120841208512086120871208812089120901209112092120931209412095120961209712098120991210012101121021210312104121051210612107121081210912110121111211212113121141211512116121171211812119121201212112122121231212412125121261212712128121291213012131121321213312134121351213612137121381213912140121411214212143121441214512146121471214812149121501215112152121531215412155121561215712158121591216012161121621216312164121651216612167121681216912170121711217212173121741217512176121771217812179121801218112182121831218412185121861218712188121891219012191121921219312194121951219612197121981219912200122011220212203122041220512206122071220812209122101221112212122131221412215122161221712218122191222012221122221222312224122251222612227122281222912230122311223212233122341223512236122371223812239122401224112242122431224412245122461224712248122491225012251122521225312254122551225612257122581225912260122611226212263122641226512266122671226812269122701227112272122731227412275122761227712278122791228012281122821228312284122851228612287122881228912290122911229212293122941229512296122971229812299123001230112302123031230412305123061230712308123091231012311123121231312314123151231612317123181231912320123211232212323123241232512326123271232812329123301233112332123331233412335123361233712338123391234012341123421234312344123451234612347123481234912350123511235212353123541235512356123571235812359123601236112362123631236412365123661236712368123691237012371123721237312374123751237612377123781237912380123811238212383123841238512386123871238812389123901239112392123931239412395123961239712398123991240012401124021240312404124051240612407124081240912410124111241212413124141241512416124171241812419124201242112422124231242412425124261242712428124291243012431124321243312434124351243612437124381243912440124411244212443124441244512446124471244812449124501245112452124531245412455124561245712458124591246012461124621246312464124651246612467124681246912470124711247212473124741247512476124771247812479124801248112482124831248412485124861248712488124891249012491124921249312494124951249612497124981249912500125011250212503125041250512506125071250812509125101251112512125131251412515125161251712518125191252012521125221252312524125251252612527125281252912530125311253212533125341253512536125371253812539125401254112542125431254412545125461254712548125491255012551125521255312554125551255612557125581255912560125611256212563125641256512566125671256812569125701257112572125731257412575125761257712578125791258012581125821258312584125851258612587125881258912590125911259212593125941259512596125971259812599126001260112602126031260412605126061260712608126091261012611126121261312614126151261612617126181261912620126211262212623126241262512626126271262812629126301263112632126331263412635126361263712638126391264012641126421264312644126451264612647126481264912650126511265212653126541265512656126571265812659126601266112662126631266412665126661266712668126691267012671126721267312674126751267612677126781267912680126811268212683126841268512686126871268812689126901269112692126931269412695126961269712698126991270012701127021270312704127051270612707127081270912710127111271212713127141271512716127171271812719127201272112722127231272412725127261272712728127291273012731127321273312734127351273612737127381273912740127411274212743127441274512746127471274812749127501275112752127531275412755127561275712758127591276012761127621276312764127651276612767127681276912770127711277212773127741277512776127771277812779127801278112782127831278412785127861278712788127891279012791127921279312794127951279612797127981279912800128011280212803128041280512806128071280812809128101281112812128131281412815128161281712818128191282012821128221282312824128251282612827128281282912830128311283212833128341283512836128371283812839128401284112842128431284412845128461284712848128491285012851128521285312854128551285612857128581285912860128611286212863128641286512866128671286812869128701287112872128731287412875128761287712878128791288012881128821288312884128851288612887128881288912890128911289212893128941289512896128971289812899129001290112902129031290412905129061290712908129091291012911129121291312914129151291612917129181291912920129211292212923129241292512926129271292812929129301293112932129331293412935129361293712938129391294012941129421294312944129451294612947129481294912950129511295212953129541295512956129571295812959129601296112962129631296412965129661296712968129691297012971129721297312974129751297612977129781297912980129811298212983129841298512986129871298812989129901299112992129931299412995129961299712998129991300013001130021300313004130051300613007130081300913010130111301213013130141301513016130171301813019130201302113022130231302413025130261302713028130291303013031130321303313034130351303613037130381303913040130411304213043130441304513046130471304813049130501305113052130531305413055130561305713058130591306013061130621306313064130651306613067130681306913070130711307213073130741307513076130771307813079130801308113082130831308413085130861308713088130891309013091130921309313094130951309613097130981309913100131011310213103131041310513106131071310813109131101311113112131131311413115131161311713118131191312013121131221312313124131251312613127131281312913130131311313213133131341313513136131371313813139131401314113142131431314413145131461314713148131491315013151131521315313154131551315613157131581315913160131611316213163131641316513166131671316813169131701317113172131731317413175131761317713178131791318013181131821318313184131851318613187131881318913190131911319213193131941319513196131971319813199132001320113202132031320413205132061320713208132091321013211132121321313214132151321613217132181321913220132211322213223132241322513226132271322813229132301323113232132331323413235132361323713238132391324013241132421324313244132451324613247132481324913250132511325213253132541325513256132571325813259132601326113262132631326413265132661326713268132691327013271132721327313274132751327613277132781327913280132811328213283132841328513286132871328813289132901329113292132931329413295132961329713298132991330013301133021330313304133051330613307133081330913310133111331213313133141331513316133171331813319133201332113322133231332413325133261332713328133291333013331133321333313334133351333613337133381333913340133411334213343133441334513346133471334813349133501335113352133531335413355133561335713358133591336013361133621336313364133651336613367133681336913370133711337213373133741337513376133771337813379133801338113382133831338413385133861338713388133891339013391133921339313394133951339613397133981339913400134011340213403134041340513406134071340813409134101341113412134131341413415134161341713418134191342013421134221342313424134251342613427134281342913430134311343213433134341343513436134371343813439134401344113442134431344413445134461344713448134491345013451134521345313454134551345613457134581345913460134611346213463134641346513466134671346813469134701347113472134731347413475134761347713478134791348013481134821348313484134851348613487134881348913490134911349213493134941349513496134971349813499135001350113502135031350413505135061350713508135091351013511135121351313514135151351613517135181351913520135211352213523135241352513526135271352813529135301353113532135331353413535135361353713538135391354013541135421354313544135451354613547135481354913550135511355213553135541355513556135571355813559135601356113562135631356413565135661356713568135691357013571135721357313574135751357613577135781357913580135811358213583135841358513586135871358813589135901359113592135931359413595135961359713598135991360013601136021360313604136051360613607136081360913610136111361213613136141361513616136171361813619136201362113622136231362413625136261362713628136291363013631136321363313634136351363613637136381363913640136411364213643136441364513646136471364813649136501365113652136531365413655136561365713658136591366013661136621366313664136651366613667136681366913670136711367213673136741367513676136771367813679136801368113682136831368413685136861368713688136891369013691136921369313694136951369613697136981369913700137011370213703137041370513706137071370813709137101371113712137131371413715137161371713718137191372013721137221372313724137251372613727137281372913730137311373213733137341373513736137371373813739137401374113742137431374413745137461374713748137491375013751137521375313754137551375613757137581375913760137611376213763137641376513766137671376813769137701377113772137731377413775137761377713778137791378013781137821378313784137851378613787137881378913790137911379213793137941379513796137971379813799138001380113802138031380413805138061380713808138091381013811138121381313814138151381613817138181381913820138211382213823138241382513826138271382813829138301383113832138331383413835138361383713838138391384013841138421384313844138451384613847138481384913850138511385213853138541385513856138571385813859138601386113862138631386413865138661386713868138691387013871138721387313874138751387613877138781387913880138811388213883138841388513886138871388813889138901389113892138931389413895138961389713898138991390013901139021390313904139051390613907139081390913910139111391213913139141391513916139171391813919139201392113922139231392413925139261392713928139291393013931139321393313934139351393613937139381393913940139411394213943139441394513946139471394813949139501395113952139531395413955139561395713958139591396013961139621396313964139651396613967139681396913970139711397213973139741397513976139771397813979139801398113982139831398413985139861398713988139891399013991139921399313994139951399613997139981399914000140011400214003140041400514006140071400814009140101401114012140131401414015140161401714018140191402014021140221402314024140251402614027140281402914030140311403214033140341403514036140371403814039140401404114042140431404414045140461404714048140491405014051140521405314054140551405614057140581405914060140611406214063140641406514066140671406814069140701407114072140731407414075140761407714078140791408014081140821408314084140851408614087140881408914090140911409214093140941409514096140971409814099141001410114102141031410414105141061410714108141091411014111141121411314114141151411614117141181411914120141211412214123141241412514126141271412814129141301413114132141331413414135141361413714138141391414014141141421414314144141451414614147141481414914150141511415214153141541415514156141571415814159141601416114162141631416414165141661416714168141691417014171141721417314174141751417614177141781417914180141811418214183141841418514186141871418814189141901419114192141931419414195141961419714198141991420014201142021420314204142051420614207142081420914210142111421214213142141421514216142171421814219142201422114222142231422414225142261422714228142291423014231142321423314234142351423614237142381423914240142411424214243142441424514246142471424814249142501425114252142531425414255142561425714258142591426014261142621426314264142651426614267142681426914270142711427214273142741427514276142771427814279142801428114282142831428414285142861428714288142891429014291142921429314294142951429614297142981429914300143011430214303143041430514306143071430814309143101431114312143131431414315143161431714318143191432014321143221432314324143251432614327143281432914330143311433214333143341433514336143371433814339143401434114342143431434414345143461434714348143491435014351143521435314354143551435614357143581435914360143611436214363143641436514366143671436814369143701437114372143731437414375143761437714378143791438014381143821438314384143851438614387143881438914390143911439214393143941439514396143971439814399144001440114402144031440414405144061440714408144091441014411144121441314414144151441614417144181441914420144211442214423144241442514426144271442814429144301443114432144331443414435144361443714438144391444014441144421444314444144451444614447144481444914450144511445214453144541445514456144571445814459144601446114462144631446414465144661446714468144691447014471144721447314474144751447614477144781447914480144811448214483144841448514486144871448814489144901449114492144931449414495144961449714498144991450014501145021450314504145051450614507145081450914510145111451214513145141451514516145171451814519145201452114522145231452414525145261452714528145291453014531145321453314534145351453614537145381453914540145411454214543145441454514546145471454814549145501455114552145531455414555145561455714558145591456014561145621456314564145651456614567145681456914570145711457214573145741457514576145771457814579145801458114582145831458414585145861458714588145891459014591145921459314594145951459614597145981459914600146011460214603146041460514606146071460814609146101461114612146131461414615146161461714618146191462014621146221462314624146251462614627146281462914630146311463214633146341463514636146371463814639146401464114642146431464414645146461464714648146491465014651146521465314654146551465614657146581465914660146611466214663146641466514666146671466814669146701467114672146731467414675146761467714678146791468014681146821468314684146851468614687146881468914690146911469214693146941469514696146971469814699147001470114702147031470414705147061470714708147091471014711147121471314714147151471614717147181471914720147211472214723147241472514726147271472814729147301473114732147331473414735147361473714738147391474014741147421474314744147451474614747147481474914750147511475214753147541475514756147571475814759147601476114762147631476414765147661476714768147691477014771147721477314774147751477614777147781477914780147811478214783147841478514786147871478814789147901479114792147931479414795147961479714798147991480014801148021480314804
  1. <!doctype html>
  2. <html lang="en" class="no-js">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width,initial-scale=1">
  6. <link rel="prev" href="../generator/mfa/">
  7. <link rel="next" href="../controller-options/">
  8. <link rel="icon" href="../../pictures/eso-round-logo.svg">
  9. <meta name="generator" content="mkdocs-1.6.1, mkdocs-material-9.6.16">
  10. <title>API specification - External Secrets Operator</title>
  11. <link rel="stylesheet" href="../../assets/stylesheets/main.7e37652d.min.css">
  12. <link rel="stylesheet" href="../../assets/stylesheets/palette.06af60db.min.css">
  13. <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
  14. <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,300i,400,400i,700,700i%7CRoboto+Mono:400,400i,700,700i&display=fallback">
  15. <style>:root{--md-text-font:"Roboto";--md-code-font:"Roboto Mono"}</style>
  16. <script>__md_scope=new URL("../..",location),__md_hash=e=>[...e].reduce(((e,_)=>(e<<5)-e+_.charCodeAt(0)),0),__md_get=(e,_=localStorage,t=__md_scope)=>JSON.parse(_.getItem(t.pathname+"."+e)),__md_set=(e,_,t=localStorage,a=__md_scope)=>{try{t.setItem(a.pathname+"."+e,JSON.stringify(_))}catch(e){}}</script>
  17. <script id="__analytics">function __md_analytics(){function e(){dataLayer.push(arguments)}window.dataLayer=window.dataLayer||[],e("js",new Date),e("config","G-QP38TD8K7V"),document.addEventListener("DOMContentLoaded",(function(){document.forms.search&&document.forms.search.query.addEventListener("blur",(function(){this.value&&e("event","search",{search_term:this.value})}));document$.subscribe((function(){var t=document.forms.feedback;if(void 0!==t)for(var a of t.querySelectorAll("[type=submit]"))a.addEventListener("click",(function(a){a.preventDefault();var n=document.location.pathname,d=this.getAttribute("data-md-value");e("event","feedback",{page:n,data:d}),t.firstElementChild.disabled=!0;var r=t.querySelector(".md-feedback__note [data-md-value='"+d+"']");r&&(r.hidden=!1)})),t.hidden=!1})),location$.subscribe((function(t){e("config","G-QP38TD8K7V",{page_path:t.pathname})}))}));var t=document.createElement("script");t.async=!0,t.src="https://www.googletagmanager.com/gtag/js?id=G-QP38TD8K7V",document.getElementById("__analytics").insertAdjacentElement("afterEnd",t)}</script>
  18. <script>"undefined"!=typeof __md_analytics&&__md_analytics()</script>
  19. </head>
  20. <body dir="ltr" data-md-color-scheme="default" data-md-color-primary="indigo" data-md-color-accent="indigo">
  21. <input class="md-toggle" data-md-toggle="drawer" type="checkbox" id="__drawer" autocomplete="off">
  22. <input class="md-toggle" data-md-toggle="search" type="checkbox" id="__search" autocomplete="off">
  23. <label class="md-overlay" for="__drawer"></label>
  24. <div data-md-component="skip">
  25. </div>
  26. <div data-md-component="announce">
  27. </div>
  28. <div data-md-color-scheme="default" data-md-component="outdated" hidden>
  29. <aside class="md-banner md-banner--warning">
  30. <div class="md-banner__inner md-grid md-typeset">
  31. You're not viewing the latest version.
  32. <a href="../../..">
  33. <strong>Click here to go to latest.</strong>
  34. </a>
  35. </div>
  36. <script>var el=document.querySelector("[data-md-component=outdated]"),base=new URL("../.."),outdated=__md_get("__outdated",sessionStorage,base);!0===outdated&&el&&(el.hidden=!1)</script>
  37. </aside>
  38. </div>
  39. <header class="md-header" data-md-component="header">
  40. <nav class="md-header__inner md-grid" aria-label="Header">
  41. <a href="../.." title="External Secrets Operator" class="md-header__button md-logo" aria-label="External Secrets Operator" data-md-component="logo">
  42. <img src="../../pictures/eso-round-logo.svg" alt="logo">
  43. </a>
  44. <label class="md-header__button md-icon" for="__drawer">
  45. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 6h18v2H3zm0 5h18v2H3zm0 5h18v2H3z"/></svg>
  46. </label>
  47. <div class="md-header__title" data-md-component="header-title">
  48. <div class="md-header__ellipsis">
  49. <div class="md-header__topic">
  50. <span class="md-ellipsis">
  51. External Secrets Operator
  52. </span>
  53. </div>
  54. <div class="md-header__topic" data-md-component="header-topic">
  55. <span class="md-ellipsis">
  56. API specification
  57. </span>
  58. </div>
  59. </div>
  60. </div>
  61. <form class="md-header__option" data-md-component="palette">
  62. <input class="md-option" data-md-color-media="(prefers-color-scheme: light)" data-md-color-scheme="default" data-md-color-primary="indigo" data-md-color-accent="indigo" aria-label="Switch to dark mode" type="radio" name="__palette" id="__palette_0">
  63. <label class="md-header__button md-icon" title="Switch to dark mode" for="__palette_1" hidden>
  64. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 8a4 4 0 0 0-4 4 4 4 0 0 0 4 4 4 4 0 0 0 4-4 4 4 0 0 0-4-4m0 10a6 6 0 0 1-6-6 6 6 0 0 1 6-6 6 6 0 0 1 6 6 6 6 0 0 1-6 6m8-9.31V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12z"/></svg>
  65. </label>
  66. <input class="md-option" data-md-color-media="(prefers-color-scheme: dark)" data-md-color-scheme="slate" data-md-color-primary="indigo" data-md-color-accent="indigo" aria-label="Switch to light mode" type="radio" name="__palette" id="__palette_1">
  67. <label class="md-header__button md-icon" title="Switch to light mode" for="__palette_0" hidden>
  68. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 18c-.89 0-1.74-.2-2.5-.55C11.56 16.5 13 14.42 13 12s-1.44-4.5-3.5-5.45C10.26 6.2 11.11 6 12 6a6 6 0 0 1 6 6 6 6 0 0 1-6 6m8-9.31V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12z"/></svg>
  69. </label>
  70. </form>
  71. <script>var palette=__md_get("__palette");if(palette&&palette.color){if("(prefers-color-scheme)"===palette.color.media){var media=matchMedia("(prefers-color-scheme: light)"),input=document.querySelector(media.matches?"[data-md-color-media='(prefers-color-scheme: light)']":"[data-md-color-media='(prefers-color-scheme: dark)']");palette.color.media=input.getAttribute("data-md-color-media"),palette.color.scheme=input.getAttribute("data-md-color-scheme"),palette.color.primary=input.getAttribute("data-md-color-primary"),palette.color.accent=input.getAttribute("data-md-color-accent")}for(var[key,value]of Object.entries(palette.color))document.body.setAttribute("data-md-color-"+key,value)}</script>
  72. <label class="md-header__button md-icon" for="__search">
  73. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.5 3A6.5 6.5 0 0 1 16 9.5c0 1.61-.59 3.09-1.56 4.23l.27.27h.79l5 5-1.5 1.5-5-5v-.79l-.27-.27A6.52 6.52 0 0 1 9.5 16 6.5 6.5 0 0 1 3 9.5 6.5 6.5 0 0 1 9.5 3m0 2C7 5 5 7 5 9.5S7 14 9.5 14 14 12 14 9.5 12 5 9.5 5"/></svg>
  74. </label>
  75. <div class="md-search" data-md-component="search" role="dialog">
  76. <label class="md-search__overlay" for="__search"></label>
  77. <div class="md-search__inner" role="search">
  78. <form class="md-search__form" name="search">
  79. <input type="text" class="md-search__input" name="query" aria-label="Search" placeholder="Search" autocapitalize="off" autocorrect="off" autocomplete="off" spellcheck="false" data-md-component="search-query" required>
  80. <label class="md-search__icon md-icon" for="__search">
  81. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.5 3A6.5 6.5 0 0 1 16 9.5c0 1.61-.59 3.09-1.56 4.23l.27.27h.79l5 5-1.5 1.5-5-5v-.79l-.27-.27A6.52 6.52 0 0 1 9.5 16 6.5 6.5 0 0 1 3 9.5 6.5 6.5 0 0 1 9.5 3m0 2C7 5 5 7 5 9.5S7 14 9.5 14 14 12 14 9.5 12 5 9.5 5"/></svg>
  82. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 11v2H8l5.5 5.5-1.42 1.42L4.16 12l7.92-7.92L13.5 5.5 8 11z"/></svg>
  83. </label>
  84. <nav class="md-search__options" aria-label="Search">
  85. <button type="reset" class="md-search__icon md-icon" title="Clear" aria-label="Clear" tabindex="-1">
  86. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 6.41 17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z"/></svg>
  87. </button>
  88. </nav>
  89. </form>
  90. <div class="md-search__output">
  91. <div class="md-search__scrollwrap" tabindex="0" data-md-scrollfix>
  92. <div class="md-search-result" data-md-component="search-result">
  93. <div class="md-search-result__meta">
  94. Initializing search
  95. </div>
  96. <ol class="md-search-result__list" role="presentation"></ol>
  97. </div>
  98. </div>
  99. </div>
  100. </div>
  101. </div>
  102. <div class="md-header__source">
  103. <a href="https://github.com/external-secrets/external-secrets" title="Go to repository" class="md-source" data-md-component="source">
  104. <div class="md-source__icon md-icon">
  105. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 7.0.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2025 Fonticons, Inc.--><path fill="currentColor" d="M439.6 236.1 244 40.5c-5.4-5.5-12.8-8.5-20.4-8.5s-15 3-20.4 8.4L162.5 81l51.5 51.5c27.1-9.1 52.7 16.8 43.4 43.7l49.7 49.7c34.2-11.8 61.2 31 35.5 56.7-26.5 26.5-70.2-2.9-56-37.3L240.3 199v121.9c25.3 12.5 22.3 41.8 9.1 55-6.4 6.4-15.2 10.1-24.3 10.1s-17.8-3.6-24.3-10.1c-17.6-17.6-11.1-46.9 11.2-56v-123c-20.8-8.5-24.6-30.7-18.6-45L142.6 101 8.5 235.1C3 240.6 0 247.9 0 255.5s3 15 8.5 20.4l195.6 195.7c5.4 5.4 12.7 8.4 20.4 8.4s15-3 20.4-8.4l194.7-194.7c5.4-5.4 8.4-12.8 8.4-20.4s-3-15-8.4-20.4"/></svg>
  106. </div>
  107. <div class="md-source__repository">
  108. External Secrets Operator
  109. </div>
  110. </a>
  111. </div>
  112. </nav>
  113. </header>
  114. <div class="md-container" data-md-component="container">
  115. <nav class="md-tabs" aria-label="Tabs" data-md-component="tabs">
  116. <div class="md-grid">
  117. <ul class="md-tabs__list">
  118. <li class="md-tabs__item">
  119. <a href="../.." class="md-tabs__link">
  120. Introduction
  121. </a>
  122. </li>
  123. <li class="md-tabs__item md-tabs__item--active">
  124. <a href="../components/" class="md-tabs__link">
  125. API
  126. </a>
  127. </li>
  128. <li class="md-tabs__item">
  129. <a href="../../guides/introduction/" class="md-tabs__link">
  130. Guides
  131. </a>
  132. </li>
  133. <li class="md-tabs__item">
  134. <a href="../../provider/aws-secrets-manager/" class="md-tabs__link">
  135. Provider
  136. </a>
  137. </li>
  138. <li class="md-tabs__item">
  139. <a href="../../examples/gitops-using-fluxcd/" class="md-tabs__link">
  140. Examples
  141. </a>
  142. </li>
  143. <li class="md-tabs__item">
  144. <a href="../../contributing/devguide/" class="md-tabs__link">
  145. Community
  146. </a>
  147. </li>
  148. </ul>
  149. </div>
  150. </nav>
  151. <main class="md-main" data-md-component="main">
  152. <div class="md-main__inner md-grid">
  153. <div class="md-sidebar md-sidebar--primary" data-md-component="sidebar" data-md-type="navigation" >
  154. <div class="md-sidebar__scrollwrap">
  155. <div class="md-sidebar__inner">
  156. <nav class="md-nav md-nav--primary md-nav--lifted" aria-label="Navigation" data-md-level="0">
  157. <label class="md-nav__title" for="__drawer">
  158. <a href="../.." title="External Secrets Operator" class="md-nav__button md-logo" aria-label="External Secrets Operator" data-md-component="logo">
  159. <img src="../../pictures/eso-round-logo.svg" alt="logo">
  160. </a>
  161. External Secrets Operator
  162. </label>
  163. <div class="md-nav__source">
  164. <a href="https://github.com/external-secrets/external-secrets" title="Go to repository" class="md-source" data-md-component="source">
  165. <div class="md-source__icon md-icon">
  166. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 7.0.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2025 Fonticons, Inc.--><path fill="currentColor" d="M439.6 236.1 244 40.5c-5.4-5.5-12.8-8.5-20.4-8.5s-15 3-20.4 8.4L162.5 81l51.5 51.5c27.1-9.1 52.7 16.8 43.4 43.7l49.7 49.7c34.2-11.8 61.2 31 35.5 56.7-26.5 26.5-70.2-2.9-56-37.3L240.3 199v121.9c25.3 12.5 22.3 41.8 9.1 55-6.4 6.4-15.2 10.1-24.3 10.1s-17.8-3.6-24.3-10.1c-17.6-17.6-11.1-46.9 11.2-56v-123c-20.8-8.5-24.6-30.7-18.6-45L142.6 101 8.5 235.1C3 240.6 0 247.9 0 255.5s3 15 8.5 20.4l195.6 195.7c5.4 5.4 12.7 8.4 20.4 8.4s15-3 20.4-8.4l194.7-194.7c5.4-5.4 8.4-12.8 8.4-20.4s-3-15-8.4-20.4"/></svg>
  167. </div>
  168. <div class="md-source__repository">
  169. External Secrets Operator
  170. </div>
  171. </a>
  172. </div>
  173. <ul class="md-nav__list" data-md-scrollfix>
  174. <li class="md-nav__item md-nav__item--nested">
  175. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_1" >
  176. <div class="md-nav__link md-nav__container">
  177. <a href="../.." class="md-nav__link ">
  178. <span class="md-ellipsis">
  179. Introduction
  180. </span>
  181. </a>
  182. <label class="md-nav__link " for="__nav_1" id="__nav_1_label" tabindex="0">
  183. <span class="md-nav__icon md-icon"></span>
  184. </label>
  185. </div>
  186. <nav class="md-nav" data-md-level="1" aria-labelledby="__nav_1_label" aria-expanded="false">
  187. <label class="md-nav__title" for="__nav_1">
  188. <span class="md-nav__icon md-icon"></span>
  189. Introduction
  190. </label>
  191. <ul class="md-nav__list" data-md-scrollfix>
  192. <li class="md-nav__item">
  193. <a href="../../introduction/overview/" class="md-nav__link">
  194. <span class="md-ellipsis">
  195. Overview
  196. </span>
  197. </a>
  198. </li>
  199. <li class="md-nav__item">
  200. <a href="../../introduction/glossary/" class="md-nav__link">
  201. <span class="md-ellipsis">
  202. Glossary
  203. </span>
  204. </a>
  205. </li>
  206. <li class="md-nav__item">
  207. <a href="../../introduction/prerequisites/" class="md-nav__link">
  208. <span class="md-ellipsis">
  209. Prerequisites
  210. </span>
  211. </a>
  212. </li>
  213. <li class="md-nav__item">
  214. <a href="../../introduction/getting-started/" class="md-nav__link">
  215. <span class="md-ellipsis">
  216. Getting started
  217. </span>
  218. </a>
  219. </li>
  220. <li class="md-nav__item">
  221. <a href="../../introduction/faq/" class="md-nav__link">
  222. <span class="md-ellipsis">
  223. FAQ
  224. </span>
  225. </a>
  226. </li>
  227. <li class="md-nav__item">
  228. <a href="../../introduction/stability-support/" class="md-nav__link">
  229. <span class="md-ellipsis">
  230. Stability and Support
  231. </span>
  232. </a>
  233. </li>
  234. <li class="md-nav__item">
  235. <a href="../../introduction/deprecation-policy/" class="md-nav__link">
  236. <span class="md-ellipsis">
  237. Deprecation Policy
  238. </span>
  239. </a>
  240. </li>
  241. </ul>
  242. </nav>
  243. </li>
  244. <li class="md-nav__item md-nav__item--active md-nav__item--section md-nav__item--nested">
  245. <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2" checked>
  246. <label class="md-nav__link" for="__nav_2" id="__nav_2_label" tabindex="">
  247. <span class="md-ellipsis">
  248. API
  249. </span>
  250. <span class="md-nav__icon md-icon"></span>
  251. </label>
  252. <nav class="md-nav" data-md-level="1" aria-labelledby="__nav_2_label" aria-expanded="true">
  253. <label class="md-nav__title" for="__nav_2">
  254. <span class="md-nav__icon md-icon"></span>
  255. API
  256. </label>
  257. <ul class="md-nav__list" data-md-scrollfix>
  258. <li class="md-nav__item">
  259. <a href="../components/" class="md-nav__link">
  260. <span class="md-ellipsis">
  261. Components
  262. </span>
  263. </a>
  264. </li>
  265. <li class="md-nav__item md-nav__item--nested">
  266. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_2_2" >
  267. <label class="md-nav__link" for="__nav_2_2" id="__nav_2_2_label" tabindex="0">
  268. <span class="md-ellipsis">
  269. Core Resources
  270. </span>
  271. <span class="md-nav__icon md-icon"></span>
  272. </label>
  273. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_2_2_label" aria-expanded="false">
  274. <label class="md-nav__title" for="__nav_2_2">
  275. <span class="md-nav__icon md-icon"></span>
  276. Core Resources
  277. </label>
  278. <ul class="md-nav__list" data-md-scrollfix>
  279. <li class="md-nav__item">
  280. <a href="../externalsecret/" class="md-nav__link">
  281. <span class="md-ellipsis">
  282. ExternalSecret
  283. </span>
  284. </a>
  285. </li>
  286. <li class="md-nav__item">
  287. <a href="../secretstore/" class="md-nav__link">
  288. <span class="md-ellipsis">
  289. SecretStore
  290. </span>
  291. </a>
  292. </li>
  293. <li class="md-nav__item">
  294. <a href="../clustersecretstore/" class="md-nav__link">
  295. <span class="md-ellipsis">
  296. ClusterSecretStore
  297. </span>
  298. </a>
  299. </li>
  300. <li class="md-nav__item">
  301. <a href="../clusterexternalsecret/" class="md-nav__link">
  302. <span class="md-ellipsis">
  303. ClusterExternalSecret
  304. </span>
  305. </a>
  306. </li>
  307. <li class="md-nav__item">
  308. <a href="../clusterpushsecret/" class="md-nav__link">
  309. <span class="md-ellipsis">
  310. ClusterPushSecret
  311. </span>
  312. </a>
  313. </li>
  314. <li class="md-nav__item">
  315. <a href="../pushsecret/" class="md-nav__link">
  316. <span class="md-ellipsis">
  317. PushSecret
  318. </span>
  319. </a>
  320. </li>
  321. </ul>
  322. </nav>
  323. </li>
  324. <li class="md-nav__item md-nav__item--nested">
  325. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_2_3" >
  326. <div class="md-nav__link md-nav__container">
  327. <a href="../generator/" class="md-nav__link ">
  328. <span class="md-ellipsis">
  329. Generators
  330. </span>
  331. </a>
  332. <label class="md-nav__link " for="__nav_2_3" id="__nav_2_3_label" tabindex="0">
  333. <span class="md-nav__icon md-icon"></span>
  334. </label>
  335. </div>
  336. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_2_3_label" aria-expanded="false">
  337. <label class="md-nav__title" for="__nav_2_3">
  338. <span class="md-nav__icon md-icon"></span>
  339. Generators
  340. </label>
  341. <ul class="md-nav__list" data-md-scrollfix>
  342. <li class="md-nav__item">
  343. <a href="../generator/acr/" class="md-nav__link">
  344. <span class="md-ellipsis">
  345. Azure Container Registry
  346. </span>
  347. </a>
  348. </li>
  349. <li class="md-nav__item">
  350. <a href="../generator/ecr/" class="md-nav__link">
  351. <span class="md-ellipsis">
  352. AWS Elastic Container Registry
  353. </span>
  354. </a>
  355. </li>
  356. <li class="md-nav__item">
  357. <a href="../generator/sts/" class="md-nav__link">
  358. <span class="md-ellipsis">
  359. AWS STS Session Token
  360. </span>
  361. </a>
  362. </li>
  363. <li class="md-nav__item">
  364. <a href="../generator/cluster/" class="md-nav__link">
  365. <span class="md-ellipsis">
  366. Cluster Generator
  367. </span>
  368. </a>
  369. </li>
  370. <li class="md-nav__item">
  371. <a href="../generator/gcr/" class="md-nav__link">
  372. <span class="md-ellipsis">
  373. Google Container Registry
  374. </span>
  375. </a>
  376. </li>
  377. <li class="md-nav__item">
  378. <a href="../generator/quay/" class="md-nav__link">
  379. <span class="md-ellipsis">
  380. Quay
  381. </span>
  382. </a>
  383. </li>
  384. <li class="md-nav__item">
  385. <a href="../generator/vault/" class="md-nav__link">
  386. <span class="md-ellipsis">
  387. Vault Dynamic Secret
  388. </span>
  389. </a>
  390. </li>
  391. <li class="md-nav__item">
  392. <a href="../generator/password/" class="md-nav__link">
  393. <span class="md-ellipsis">
  394. Password
  395. </span>
  396. </a>
  397. </li>
  398. <li class="md-nav__item">
  399. <a href="../generator/fake/" class="md-nav__link">
  400. <span class="md-ellipsis">
  401. Fake
  402. </span>
  403. </a>
  404. </li>
  405. <li class="md-nav__item">
  406. <a href="../generator/webhook/" class="md-nav__link">
  407. <span class="md-ellipsis">
  408. Webhook
  409. </span>
  410. </a>
  411. </li>
  412. <li class="md-nav__item">
  413. <a href="../generator/github/" class="md-nav__link">
  414. <span class="md-ellipsis">
  415. Github
  416. </span>
  417. </a>
  418. </li>
  419. <li class="md-nav__item">
  420. <a href="../generator/uuid/" class="md-nav__link">
  421. <span class="md-ellipsis">
  422. UUID
  423. </span>
  424. </a>
  425. </li>
  426. <li class="md-nav__item">
  427. <a href="../generator/mfa/" class="md-nav__link">
  428. <span class="md-ellipsis">
  429. MFA
  430. </span>
  431. </a>
  432. </li>
  433. </ul>
  434. </nav>
  435. </li>
  436. <li class="md-nav__item md-nav__item--active md-nav__item--nested">
  437. <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_4" checked>
  438. <label class="md-nav__link" for="__nav_2_4" id="__nav_2_4_label" tabindex="0">
  439. <span class="md-ellipsis">
  440. Reference Docs
  441. </span>
  442. <span class="md-nav__icon md-icon"></span>
  443. </label>
  444. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_2_4_label" aria-expanded="true">
  445. <label class="md-nav__title" for="__nav_2_4">
  446. <span class="md-nav__icon md-icon"></span>
  447. Reference Docs
  448. </label>
  449. <ul class="md-nav__list" data-md-scrollfix>
  450. <li class="md-nav__item md-nav__item--active">
  451. <input class="md-nav__toggle md-toggle" type="checkbox" id="__toc">
  452. <a href="./" class="md-nav__link md-nav__link--active">
  453. <span class="md-ellipsis">
  454. API specification
  455. </span>
  456. </a>
  457. </li>
  458. <li class="md-nav__item">
  459. <a href="../controller-options/" class="md-nav__link">
  460. <span class="md-ellipsis">
  461. Controller Options
  462. </span>
  463. </a>
  464. </li>
  465. <li class="md-nav__item">
  466. <a href="../metrics/" class="md-nav__link">
  467. <span class="md-ellipsis">
  468. Metrics
  469. </span>
  470. </a>
  471. </li>
  472. </ul>
  473. </nav>
  474. </li>
  475. </ul>
  476. </nav>
  477. </li>
  478. <li class="md-nav__item md-nav__item--nested">
  479. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_3" >
  480. <label class="md-nav__link" for="__nav_3" id="__nav_3_label" tabindex="0">
  481. <span class="md-ellipsis">
  482. Guides
  483. </span>
  484. <span class="md-nav__icon md-icon"></span>
  485. </label>
  486. <nav class="md-nav" data-md-level="1" aria-labelledby="__nav_3_label" aria-expanded="false">
  487. <label class="md-nav__title" for="__nav_3">
  488. <span class="md-nav__icon md-icon"></span>
  489. Guides
  490. </label>
  491. <ul class="md-nav__list" data-md-scrollfix>
  492. <li class="md-nav__item">
  493. <a href="../../guides/introduction/" class="md-nav__link">
  494. <span class="md-ellipsis">
  495. Introduction
  496. </span>
  497. </a>
  498. </li>
  499. <li class="md-nav__item md-nav__item--nested">
  500. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_3_2" >
  501. <label class="md-nav__link" for="__nav_3_2" id="__nav_3_2_label" tabindex="0">
  502. <span class="md-ellipsis">
  503. External Secrets
  504. </span>
  505. <span class="md-nav__icon md-icon"></span>
  506. </label>
  507. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_3_2_label" aria-expanded="false">
  508. <label class="md-nav__title" for="__nav_3_2">
  509. <span class="md-nav__icon md-icon"></span>
  510. External Secrets
  511. </label>
  512. <ul class="md-nav__list" data-md-scrollfix>
  513. <li class="md-nav__item">
  514. <a href="../../guides/all-keys-one-secret/" class="md-nav__link">
  515. <span class="md-ellipsis">
  516. Extract structured data
  517. </span>
  518. </a>
  519. </li>
  520. <li class="md-nav__item">
  521. <a href="../../guides/getallsecrets/" class="md-nav__link">
  522. <span class="md-ellipsis">
  523. Find Secrets by Name or Metadata
  524. </span>
  525. </a>
  526. </li>
  527. <li class="md-nav__item">
  528. <a href="../../guides/datafrom-rewrite/" class="md-nav__link">
  529. <span class="md-ellipsis">
  530. Rewriting Keys
  531. </span>
  532. </a>
  533. </li>
  534. <li class="md-nav__item md-nav__item--nested">
  535. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_3_2_4" >
  536. <label class="md-nav__link" for="__nav_3_2_4" id="__nav_3_2_4_label" tabindex="0">
  537. <span class="md-ellipsis">
  538. Advanced Templating
  539. </span>
  540. <span class="md-nav__icon md-icon"></span>
  541. </label>
  542. <nav class="md-nav" data-md-level="3" aria-labelledby="__nav_3_2_4_label" aria-expanded="false">
  543. <label class="md-nav__title" for="__nav_3_2_4">
  544. <span class="md-nav__icon md-icon"></span>
  545. Advanced Templating
  546. </label>
  547. <ul class="md-nav__list" data-md-scrollfix>
  548. <li class="md-nav__item">
  549. <a href="../../guides/templating/" class="md-nav__link">
  550. <span class="md-ellipsis">
  551. v2
  552. </span>
  553. </a>
  554. </li>
  555. <li class="md-nav__item">
  556. <a href="../../guides/templating-v1/" class="md-nav__link">
  557. <span class="md-ellipsis">
  558. v1
  559. </span>
  560. </a>
  561. </li>
  562. </ul>
  563. </nav>
  564. </li>
  565. <li class="md-nav__item">
  566. <a href="../../guides/common-k8s-secret-types/" class="md-nav__link">
  567. <span class="md-ellipsis">
  568. Kubernetes Secret Types
  569. </span>
  570. </a>
  571. </li>
  572. <li class="md-nav__item">
  573. <a href="../../guides/ownership-deletion-policy/" class="md-nav__link">
  574. <span class="md-ellipsis">
  575. Lifecycle: ownership & deletion
  576. </span>
  577. </a>
  578. </li>
  579. <li class="md-nav__item">
  580. <a href="../../guides/decoding-strategy/" class="md-nav__link">
  581. <span class="md-ellipsis">
  582. Decoding Strategies
  583. </span>
  584. </a>
  585. </li>
  586. <li class="md-nav__item">
  587. <a href="../../guides/controller-class/" class="md-nav__link">
  588. <span class="md-ellipsis">
  589. Controller Classes
  590. </span>
  591. </a>
  592. </li>
  593. </ul>
  594. </nav>
  595. </li>
  596. <li class="md-nav__item">
  597. <a href="../../guides/generator/" class="md-nav__link">
  598. <span class="md-ellipsis">
  599. Generators
  600. </span>
  601. </a>
  602. </li>
  603. <li class="md-nav__item">
  604. <a href="../../guides/pushsecrets/" class="md-nav__link">
  605. <span class="md-ellipsis">
  606. Push Secrets
  607. </span>
  608. </a>
  609. </li>
  610. <li class="md-nav__item md-nav__item--nested">
  611. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_3_5" >
  612. <label class="md-nav__link" for="__nav_3_5" id="__nav_3_5_label" tabindex="0">
  613. <span class="md-ellipsis">
  614. Operations
  615. </span>
  616. <span class="md-nav__icon md-icon"></span>
  617. </label>
  618. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_3_5_label" aria-expanded="false">
  619. <label class="md-nav__title" for="__nav_3_5">
  620. <span class="md-nav__icon md-icon"></span>
  621. Operations
  622. </label>
  623. <ul class="md-nav__list" data-md-scrollfix>
  624. <li class="md-nav__item">
  625. <a href="../../guides/multi-tenancy/" class="md-nav__link">
  626. <span class="md-ellipsis">
  627. Multi Tenancy
  628. </span>
  629. </a>
  630. </li>
  631. <li class="md-nav__item">
  632. <a href="../../guides/security-best-practices/" class="md-nav__link">
  633. <span class="md-ellipsis">
  634. Security Best Practices
  635. </span>
  636. </a>
  637. </li>
  638. <li class="md-nav__item">
  639. <a href="../../guides/threat-model/" class="md-nav__link">
  640. <span class="md-ellipsis">
  641. Threat Model
  642. </span>
  643. </a>
  644. </li>
  645. <li class="md-nav__item">
  646. <a href="../../guides/v1beta1/" class="md-nav__link">
  647. <span class="md-ellipsis">
  648. Upgrading to v1beta1
  649. </span>
  650. </a>
  651. </li>
  652. <li class="md-nav__item">
  653. <a href="../../guides/using-latest-image/" class="md-nav__link">
  654. <span class="md-ellipsis">
  655. Using Latest Image
  656. </span>
  657. </a>
  658. </li>
  659. <li class="md-nav__item">
  660. <a href="../../guides/disable-cluster-features/" class="md-nav__link">
  661. <span class="md-ellipsis">
  662. Disable Cluster Features
  663. </span>
  664. </a>
  665. </li>
  666. </ul>
  667. </nav>
  668. </li>
  669. <li class="md-nav__item md-nav__item--nested">
  670. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_3_6" >
  671. <label class="md-nav__link" for="__nav_3_6" id="__nav_3_6_label" tabindex="0">
  672. <span class="md-ellipsis">
  673. Tooling
  674. </span>
  675. <span class="md-nav__icon md-icon"></span>
  676. </label>
  677. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_3_6_label" aria-expanded="false">
  678. <label class="md-nav__title" for="__nav_3_6">
  679. <span class="md-nav__icon md-icon"></span>
  680. Tooling
  681. </label>
  682. <ul class="md-nav__list" data-md-scrollfix>
  683. <li class="md-nav__item">
  684. <a href="../../guides/using-esoctl-tool/" class="md-nav__link">
  685. <span class="md-ellipsis">
  686. Using the esoctl tool
  687. </span>
  688. </a>
  689. </li>
  690. </ul>
  691. </nav>
  692. </li>
  693. </ul>
  694. </nav>
  695. </li>
  696. <li class="md-nav__item md-nav__item--nested">
  697. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_4" >
  698. <label class="md-nav__link" for="__nav_4" id="__nav_4_label" tabindex="0">
  699. <span class="md-ellipsis">
  700. Provider
  701. </span>
  702. <span class="md-nav__icon md-icon"></span>
  703. </label>
  704. <nav class="md-nav" data-md-level="1" aria-labelledby="__nav_4_label" aria-expanded="false">
  705. <label class="md-nav__title" for="__nav_4">
  706. <span class="md-nav__icon md-icon"></span>
  707. Provider
  708. </label>
  709. <ul class="md-nav__list" data-md-scrollfix>
  710. <li class="md-nav__item">
  711. <a href="../../provider/aws-secrets-manager/" class="md-nav__link">
  712. <span class="md-ellipsis">
  713. AWS Secrets Manager
  714. </span>
  715. </a>
  716. </li>
  717. <li class="md-nav__item">
  718. <a href="../../provider/aws-parameter-store/" class="md-nav__link">
  719. <span class="md-ellipsis">
  720. AWS Parameter Store
  721. </span>
  722. </a>
  723. </li>
  724. <li class="md-nav__item">
  725. <a href="../../provider/azure-key-vault/" class="md-nav__link">
  726. <span class="md-ellipsis">
  727. Azure Key Vault
  728. </span>
  729. </a>
  730. </li>
  731. <li class="md-nav__item">
  732. <a href="../../provider/beyondtrust/" class="md-nav__link">
  733. <span class="md-ellipsis">
  734. BeyondTrust
  735. </span>
  736. </a>
  737. </li>
  738. <li class="md-nav__item">
  739. <a href="../../provider/bitwarden-secrets-manager/" class="md-nav__link">
  740. <span class="md-ellipsis">
  741. Bitwarden Secrets Manager
  742. </span>
  743. </a>
  744. </li>
  745. <li class="md-nav__item">
  746. <a href="../../provider/chef/" class="md-nav__link">
  747. <span class="md-ellipsis">
  748. Chef
  749. </span>
  750. </a>
  751. </li>
  752. <li class="md-nav__item">
  753. <a href="../../provider/cloudru/" class="md-nav__link">
  754. <span class="md-ellipsis">
  755. Cloud.ru Secret Manager
  756. </span>
  757. </a>
  758. </li>
  759. <li class="md-nav__item">
  760. <a href="../../provider/conjur/" class="md-nav__link">
  761. <span class="md-ellipsis">
  762. CyberArk Conjur
  763. </span>
  764. </a>
  765. </li>
  766. <li class="md-nav__item">
  767. <a href="../../provider/device42/" class="md-nav__link">
  768. <span class="md-ellipsis">
  769. Device42
  770. </span>
  771. </a>
  772. </li>
  773. <li class="md-nav__item">
  774. <a href="../../provider/google-secrets-manager/" class="md-nav__link">
  775. <span class="md-ellipsis">
  776. Google Cloud Secret Manager
  777. </span>
  778. </a>
  779. </li>
  780. <li class="md-nav__item">
  781. <a href="../../provider/hashicorp-vault/" class="md-nav__link">
  782. <span class="md-ellipsis">
  783. HashiCorp Vault
  784. </span>
  785. </a>
  786. </li>
  787. <li class="md-nav__item">
  788. <a href="../../provider/kubernetes/" class="md-nav__link">
  789. <span class="md-ellipsis">
  790. Kubernetes
  791. </span>
  792. </a>
  793. </li>
  794. <li class="md-nav__item">
  795. <a href="../../provider/ibm-secrets-manager/" class="md-nav__link">
  796. <span class="md-ellipsis">
  797. IBM Secrets Manager
  798. </span>
  799. </a>
  800. </li>
  801. <li class="md-nav__item">
  802. <a href="../../provider/akeyless/" class="md-nav__link">
  803. <span class="md-ellipsis">
  804. Akeyless
  805. </span>
  806. </a>
  807. </li>
  808. <li class="md-nav__item">
  809. <a href="../../provider/yandex-certificate-manager/" class="md-nav__link">
  810. <span class="md-ellipsis">
  811. Yandex Certificate Manager
  812. </span>
  813. </a>
  814. </li>
  815. <li class="md-nav__item">
  816. <a href="../../provider/yandex-lockbox/" class="md-nav__link">
  817. <span class="md-ellipsis">
  818. Yandex Lockbox
  819. </span>
  820. </a>
  821. </li>
  822. <li class="md-nav__item">
  823. <a href="../../provider/alibaba/" class="md-nav__link">
  824. <span class="md-ellipsis">
  825. Alibaba Cloud
  826. </span>
  827. </a>
  828. </li>
  829. <li class="md-nav__item">
  830. <a href="../../provider/gitlab-variables/" class="md-nav__link">
  831. <span class="md-ellipsis">
  832. GitLab Variables
  833. </span>
  834. </a>
  835. </li>
  836. <li class="md-nav__item">
  837. <a href="../../provider/github/" class="md-nav__link">
  838. <span class="md-ellipsis">
  839. Github Actions Secrets
  840. </span>
  841. </a>
  842. </li>
  843. <li class="md-nav__item">
  844. <a href="../../provider/oracle-vault/" class="md-nav__link">
  845. <span class="md-ellipsis">
  846. Oracle Vault
  847. </span>
  848. </a>
  849. </li>
  850. <li class="md-nav__item">
  851. <a href="../../provider/1password-automation/" class="md-nav__link">
  852. <span class="md-ellipsis">
  853. 1Password Connect Server
  854. </span>
  855. </a>
  856. </li>
  857. <li class="md-nav__item">
  858. <a href="../../provider/1password-sdk/" class="md-nav__link">
  859. <span class="md-ellipsis">
  860. 1Password SDK
  861. </span>
  862. </a>
  863. </li>
  864. <li class="md-nav__item">
  865. <a href="../../provider/webhook/" class="md-nav__link">
  866. <span class="md-ellipsis">
  867. Webhook
  868. </span>
  869. </a>
  870. </li>
  871. <li class="md-nav__item">
  872. <a href="../../provider/fake/" class="md-nav__link">
  873. <span class="md-ellipsis">
  874. Fake
  875. </span>
  876. </a>
  877. </li>
  878. <li class="md-nav__item">
  879. <a href="../../provider/senhasegura-dsm/" class="md-nav__link">
  880. <span class="md-ellipsis">
  881. senhasegura DevOps Secrets Management (DSM)
  882. </span>
  883. </a>
  884. </li>
  885. <li class="md-nav__item">
  886. <a href="../../provider/doppler/" class="md-nav__link">
  887. <span class="md-ellipsis">
  888. Doppler
  889. </span>
  890. </a>
  891. </li>
  892. <li class="md-nav__item">
  893. <a href="../../provider/keeper-security/" class="md-nav__link">
  894. <span class="md-ellipsis">
  895. Keeper Security
  896. </span>
  897. </a>
  898. </li>
  899. <li class="md-nav__item">
  900. <a href="../../provider/cloak/" class="md-nav__link">
  901. <span class="md-ellipsis">
  902. Cloak End 2 End Encrypted Secrets
  903. </span>
  904. </a>
  905. </li>
  906. <li class="md-nav__item">
  907. <a href="../../provider/scaleway/" class="md-nav__link">
  908. <span class="md-ellipsis">
  909. Scaleway
  910. </span>
  911. </a>
  912. </li>
  913. <li class="md-nav__item">
  914. <a href="../../provider/delinea/" class="md-nav__link">
  915. <span class="md-ellipsis">
  916. Delinea
  917. </span>
  918. </a>
  919. </li>
  920. <li class="md-nav__item">
  921. <a href="../../provider/secretserver/" class="md-nav__link">
  922. <span class="md-ellipsis">
  923. Secret Server
  924. </span>
  925. </a>
  926. </li>
  927. <li class="md-nav__item">
  928. <a href="../../provider/passbolt/" class="md-nav__link">
  929. <span class="md-ellipsis">
  930. Passbolt
  931. </span>
  932. </a>
  933. </li>
  934. <li class="md-nav__item">
  935. <a href="../../provider/pulumi/" class="md-nav__link">
  936. <span class="md-ellipsis">
  937. Pulumi ESC
  938. </span>
  939. </a>
  940. </li>
  941. <li class="md-nav__item">
  942. <a href="../../provider/onboardbase/" class="md-nav__link">
  943. <span class="md-ellipsis">
  944. Onboardbase
  945. </span>
  946. </a>
  947. </li>
  948. <li class="md-nav__item">
  949. <a href="../../provider-passworddepot/" class="md-nav__link">
  950. <span class="md-ellipsis">
  951. Password Depot
  952. </span>
  953. </a>
  954. </li>
  955. <li class="md-nav__item">
  956. <a href="../../provider/fortanix/" class="md-nav__link">
  957. <span class="md-ellipsis">
  958. Fortanix
  959. </span>
  960. </a>
  961. </li>
  962. <li class="md-nav__item">
  963. <a href="../../provider/infisical/" class="md-nav__link">
  964. <span class="md-ellipsis">
  965. Infisical
  966. </span>
  967. </a>
  968. </li>
  969. <li class="md-nav__item">
  970. <a href="../../provider/previder/" class="md-nav__link">
  971. <span class="md-ellipsis">
  972. Previder
  973. </span>
  974. </a>
  975. </li>
  976. <li class="md-nav__item">
  977. <a href="../../provider/openbao/" class="md-nav__link">
  978. <span class="md-ellipsis">
  979. OpenBao
  980. </span>
  981. </a>
  982. </li>
  983. </ul>
  984. </nav>
  985. </li>
  986. <li class="md-nav__item md-nav__item--nested">
  987. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_5" >
  988. <label class="md-nav__link" for="__nav_5" id="__nav_5_label" tabindex="0">
  989. <span class="md-ellipsis">
  990. Examples
  991. </span>
  992. <span class="md-nav__icon md-icon"></span>
  993. </label>
  994. <nav class="md-nav" data-md-level="1" aria-labelledby="__nav_5_label" aria-expanded="false">
  995. <label class="md-nav__title" for="__nav_5">
  996. <span class="md-nav__icon md-icon"></span>
  997. Examples
  998. </label>
  999. <ul class="md-nav__list" data-md-scrollfix>
  1000. <li class="md-nav__item">
  1001. <a href="../../examples/gitops-using-fluxcd/" class="md-nav__link">
  1002. <span class="md-ellipsis">
  1003. FluxCD
  1004. </span>
  1005. </a>
  1006. </li>
  1007. <li class="md-nav__item">
  1008. <a href="../../examples/anchore-engine-credentials/" class="md-nav__link">
  1009. <span class="md-ellipsis">
  1010. Anchore Engine
  1011. </span>
  1012. </a>
  1013. </li>
  1014. <li class="md-nav__item">
  1015. <a href="../../examples/jenkins-kubernetes-credentials/" class="md-nav__link">
  1016. <span class="md-ellipsis">
  1017. Jenkins
  1018. </span>
  1019. </a>
  1020. </li>
  1021. <li class="md-nav__item">
  1022. <a href="../../examples/bitwarden/" class="md-nav__link">
  1023. <span class="md-ellipsis">
  1024. Bitwarden
  1025. </span>
  1026. </a>
  1027. </li>
  1028. </ul>
  1029. </nav>
  1030. </li>
  1031. <li class="md-nav__item md-nav__item--nested">
  1032. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_6" >
  1033. <label class="md-nav__link" for="__nav_6" id="__nav_6_label" tabindex="0">
  1034. <span class="md-ellipsis">
  1035. Community
  1036. </span>
  1037. <span class="md-nav__icon md-icon"></span>
  1038. </label>
  1039. <nav class="md-nav" data-md-level="1" aria-labelledby="__nav_6_label" aria-expanded="false">
  1040. <label class="md-nav__title" for="__nav_6">
  1041. <span class="md-nav__icon md-icon"></span>
  1042. Community
  1043. </label>
  1044. <ul class="md-nav__list" data-md-scrollfix>
  1045. <li class="md-nav__item md-nav__item--nested">
  1046. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_6_1" >
  1047. <label class="md-nav__link" for="__nav_6_1" id="__nav_6_1_label" tabindex="0">
  1048. <span class="md-ellipsis">
  1049. Contributing
  1050. </span>
  1051. <span class="md-nav__icon md-icon"></span>
  1052. </label>
  1053. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_6_1_label" aria-expanded="false">
  1054. <label class="md-nav__title" for="__nav_6_1">
  1055. <span class="md-nav__icon md-icon"></span>
  1056. Contributing
  1057. </label>
  1058. <ul class="md-nav__list" data-md-scrollfix>
  1059. <li class="md-nav__item">
  1060. <a href="../../contributing/devguide/" class="md-nav__link">
  1061. <span class="md-ellipsis">
  1062. Developer guide
  1063. </span>
  1064. </a>
  1065. </li>
  1066. <li class="md-nav__item">
  1067. <a href="../../contributing/process/" class="md-nav__link">
  1068. <span class="md-ellipsis">
  1069. Contributing Process
  1070. </span>
  1071. </a>
  1072. </li>
  1073. <li class="md-nav__item">
  1074. <a href="../../contributing/release/" class="md-nav__link">
  1075. <span class="md-ellipsis">
  1076. Release Process
  1077. </span>
  1078. </a>
  1079. </li>
  1080. <li class="md-nav__item">
  1081. <a href="../../contributing/coc/" class="md-nav__link">
  1082. <span class="md-ellipsis">
  1083. Code of Conduct
  1084. </span>
  1085. </a>
  1086. </li>
  1087. <li class="md-nav__item">
  1088. <a href="../../contributing/calendar/" class="md-nav__link">
  1089. <span class="md-ellipsis">
  1090. Community meetings calendar
  1091. </span>
  1092. </a>
  1093. </li>
  1094. <li class="md-nav__item">
  1095. <a href="../../contributing/roadmap/" class="md-nav__link">
  1096. <span class="md-ellipsis">
  1097. Roadmap
  1098. </span>
  1099. </a>
  1100. </li>
  1101. </ul>
  1102. </nav>
  1103. </li>
  1104. <li class="md-nav__item md-nav__item--nested">
  1105. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_6_2" >
  1106. <label class="md-nav__link" for="__nav_6_2" id="__nav_6_2_label" tabindex="0">
  1107. <span class="md-ellipsis">
  1108. External Resources
  1109. </span>
  1110. <span class="md-nav__icon md-icon"></span>
  1111. </label>
  1112. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_6_2_label" aria-expanded="false">
  1113. <label class="md-nav__title" for="__nav_6_2">
  1114. <span class="md-nav__icon md-icon"></span>
  1115. External Resources
  1116. </label>
  1117. <ul class="md-nav__list" data-md-scrollfix>
  1118. <li class="md-nav__item">
  1119. <a href="../../eso-talks/" class="md-nav__link">
  1120. <span class="md-ellipsis">
  1121. Talks
  1122. </span>
  1123. </a>
  1124. </li>
  1125. <li class="md-nav__item">
  1126. <a href="../../eso-demos/" class="md-nav__link">
  1127. <span class="md-ellipsis">
  1128. Demos
  1129. </span>
  1130. </a>
  1131. </li>
  1132. <li class="md-nav__item">
  1133. <a href="../../eso-blogs/" class="md-nav__link">
  1134. <span class="md-ellipsis">
  1135. Blogs
  1136. </span>
  1137. </a>
  1138. </li>
  1139. <li class="md-nav__item">
  1140. <a href="../../eso-tools/" class="md-nav__link">
  1141. <span class="md-ellipsis">
  1142. Tools
  1143. </span>
  1144. </a>
  1145. </li>
  1146. </ul>
  1147. </nav>
  1148. </li>
  1149. </ul>
  1150. </nav>
  1151. </li>
  1152. </ul>
  1153. </nav>
  1154. </div>
  1155. </div>
  1156. </div>
  1157. <div class="md-sidebar md-sidebar--secondary" data-md-component="sidebar" data-md-type="toc" >
  1158. <div class="md-sidebar__scrollwrap">
  1159. <div class="md-sidebar__inner">
  1160. <nav class="md-nav md-nav--secondary" aria-label="Table of contents">
  1161. </nav>
  1162. </div>
  1163. </div>
  1164. </div>
  1165. <div class="md-content" data-md-component="content">
  1166. <article class="md-content__inner md-typeset">
  1167. <h1>API specification</h1>
  1168. <p>Packages:</p>
  1169. <ul>
  1170. <li>
  1171. <a href="#external-secrets.io%2fv1">external-secrets.io/v1</a>
  1172. </li>
  1173. </ul>
  1174. <h2 id="external-secrets.io/v1">external-secrets.io/v1</h2>
  1175. <p>
  1176. <p>Package v1 contains resources for external-secrets</p>
  1177. </p>
  1178. <p>Resource Types:</p>
  1179. <ul></ul>
  1180. <h3 id="external-secrets.io/v1.AWSAuth">AWSAuth
  1181. </h3>
  1182. <p>
  1183. (<em>Appears on:</em>
  1184. <a href="#external-secrets.io/v1.AWSProvider">AWSProvider</a>)
  1185. </p>
  1186. <p>
  1187. <p>AWSAuth tells the controller how to do authentication with aws.
  1188. Only one of secretRef or jwt can be specified.
  1189. if none is specified the controller will load credentials using the aws sdk defaults.</p>
  1190. </p>
  1191. <table>
  1192. <thead>
  1193. <tr>
  1194. <th>Field</th>
  1195. <th>Description</th>
  1196. </tr>
  1197. </thead>
  1198. <tbody>
  1199. <tr>
  1200. <td>
  1201. <code>secretRef</code></br>
  1202. <em>
  1203. <a href="#external-secrets.io/v1.AWSAuthSecretRef">
  1204. AWSAuthSecretRef
  1205. </a>
  1206. </em>
  1207. </td>
  1208. <td>
  1209. <em>(Optional)</em>
  1210. </td>
  1211. </tr>
  1212. <tr>
  1213. <td>
  1214. <code>jwt</code></br>
  1215. <em>
  1216. <a href="#external-secrets.io/v1.AWSJWTAuth">
  1217. AWSJWTAuth
  1218. </a>
  1219. </em>
  1220. </td>
  1221. <td>
  1222. <em>(Optional)</em>
  1223. </td>
  1224. </tr>
  1225. </tbody>
  1226. </table>
  1227. <h3 id="external-secrets.io/v1.AWSAuthSecretRef">AWSAuthSecretRef
  1228. </h3>
  1229. <p>
  1230. (<em>Appears on:</em>
  1231. <a href="#external-secrets.io/v1.AWSAuth">AWSAuth</a>)
  1232. </p>
  1233. <p>
  1234. <p>AWSAuthSecretRef holds secret references for AWS credentials
  1235. both AccessKeyID and SecretAccessKey must be defined in order to properly authenticate.</p>
  1236. </p>
  1237. <table>
  1238. <thead>
  1239. <tr>
  1240. <th>Field</th>
  1241. <th>Description</th>
  1242. </tr>
  1243. </thead>
  1244. <tbody>
  1245. <tr>
  1246. <td>
  1247. <code>accessKeyIDSecretRef</code></br>
  1248. <em>
  1249. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1250. External Secrets meta/v1.SecretKeySelector
  1251. </a>
  1252. </em>
  1253. </td>
  1254. <td>
  1255. <p>The AccessKeyID is used for authentication</p>
  1256. </td>
  1257. </tr>
  1258. <tr>
  1259. <td>
  1260. <code>secretAccessKeySecretRef</code></br>
  1261. <em>
  1262. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1263. External Secrets meta/v1.SecretKeySelector
  1264. </a>
  1265. </em>
  1266. </td>
  1267. <td>
  1268. <p>The SecretAccessKey is used for authentication</p>
  1269. </td>
  1270. </tr>
  1271. <tr>
  1272. <td>
  1273. <code>sessionTokenSecretRef</code></br>
  1274. <em>
  1275. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1276. External Secrets meta/v1.SecretKeySelector
  1277. </a>
  1278. </em>
  1279. </td>
  1280. <td>
  1281. <p>The SessionToken used for authentication
  1282. This must be defined if AccessKeyID and SecretAccessKey are temporary credentials
  1283. see: <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_use-resources.html">https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_use-resources.html</a></p>
  1284. </td>
  1285. </tr>
  1286. </tbody>
  1287. </table>
  1288. <h3 id="external-secrets.io/v1.AWSJWTAuth">AWSJWTAuth
  1289. </h3>
  1290. <p>
  1291. (<em>Appears on:</em>
  1292. <a href="#external-secrets.io/v1.AWSAuth">AWSAuth</a>)
  1293. </p>
  1294. <p>
  1295. <p>Authenticate against AWS using service account tokens.</p>
  1296. </p>
  1297. <table>
  1298. <thead>
  1299. <tr>
  1300. <th>Field</th>
  1301. <th>Description</th>
  1302. </tr>
  1303. </thead>
  1304. <tbody>
  1305. <tr>
  1306. <td>
  1307. <code>serviceAccountRef</code></br>
  1308. <em>
  1309. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  1310. External Secrets meta/v1.ServiceAccountSelector
  1311. </a>
  1312. </em>
  1313. </td>
  1314. <td>
  1315. </td>
  1316. </tr>
  1317. </tbody>
  1318. </table>
  1319. <h3 id="external-secrets.io/v1.AWSProvider">AWSProvider
  1320. </h3>
  1321. <p>
  1322. (<em>Appears on:</em>
  1323. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  1324. </p>
  1325. <p>
  1326. <p>AWSProvider configures a store to sync secrets with AWS.</p>
  1327. </p>
  1328. <table>
  1329. <thead>
  1330. <tr>
  1331. <th>Field</th>
  1332. <th>Description</th>
  1333. </tr>
  1334. </thead>
  1335. <tbody>
  1336. <tr>
  1337. <td>
  1338. <code>service</code></br>
  1339. <em>
  1340. <a href="#external-secrets.io/v1.AWSServiceType">
  1341. AWSServiceType
  1342. </a>
  1343. </em>
  1344. </td>
  1345. <td>
  1346. <p>Service defines which service should be used to fetch the secrets</p>
  1347. </td>
  1348. </tr>
  1349. <tr>
  1350. <td>
  1351. <code>auth</code></br>
  1352. <em>
  1353. <a href="#external-secrets.io/v1.AWSAuth">
  1354. AWSAuth
  1355. </a>
  1356. </em>
  1357. </td>
  1358. <td>
  1359. <em>(Optional)</em>
  1360. <p>Auth defines the information necessary to authenticate against AWS
  1361. if not set aws sdk will infer credentials from your environment
  1362. see: <a href="https://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/configuring-sdk.html#specifying-credentials">https://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/configuring-sdk.html#specifying-credentials</a></p>
  1363. </td>
  1364. </tr>
  1365. <tr>
  1366. <td>
  1367. <code>role</code></br>
  1368. <em>
  1369. string
  1370. </em>
  1371. </td>
  1372. <td>
  1373. <em>(Optional)</em>
  1374. <p>Role is a Role ARN which the provider will assume</p>
  1375. </td>
  1376. </tr>
  1377. <tr>
  1378. <td>
  1379. <code>region</code></br>
  1380. <em>
  1381. string
  1382. </em>
  1383. </td>
  1384. <td>
  1385. <p>AWS Region to be used for the provider</p>
  1386. </td>
  1387. </tr>
  1388. <tr>
  1389. <td>
  1390. <code>additionalRoles</code></br>
  1391. <em>
  1392. []string
  1393. </em>
  1394. </td>
  1395. <td>
  1396. <em>(Optional)</em>
  1397. <p>AdditionalRoles is a chained list of Role ARNs which the provider will sequentially assume before assuming the Role</p>
  1398. </td>
  1399. </tr>
  1400. <tr>
  1401. <td>
  1402. <code>externalID</code></br>
  1403. <em>
  1404. string
  1405. </em>
  1406. </td>
  1407. <td>
  1408. <p>AWS External ID set on assumed IAM roles</p>
  1409. </td>
  1410. </tr>
  1411. <tr>
  1412. <td>
  1413. <code>sessionTags</code></br>
  1414. <em>
  1415. <a href="#external-secrets.io/v1.*github.com/external-secrets/external-secrets/apis/externalsecrets/v1.Tag">
  1416. []*github.com/external-secrets/external-secrets/apis/externalsecrets/v1.Tag
  1417. </a>
  1418. </em>
  1419. </td>
  1420. <td>
  1421. <em>(Optional)</em>
  1422. <p>AWS STS assume role session tags</p>
  1423. </td>
  1424. </tr>
  1425. <tr>
  1426. <td>
  1427. <code>secretsManager</code></br>
  1428. <em>
  1429. <a href="#external-secrets.io/v1.SecretsManager">
  1430. SecretsManager
  1431. </a>
  1432. </em>
  1433. </td>
  1434. <td>
  1435. <em>(Optional)</em>
  1436. <p>SecretsManager defines how the provider behaves when interacting with AWS SecretsManager</p>
  1437. </td>
  1438. </tr>
  1439. <tr>
  1440. <td>
  1441. <code>transitiveTagKeys</code></br>
  1442. <em>
  1443. []string
  1444. </em>
  1445. </td>
  1446. <td>
  1447. <em>(Optional)</em>
  1448. <p>AWS STS assume role transitive session tags. Required when multiple rules are used with the provider</p>
  1449. </td>
  1450. </tr>
  1451. <tr>
  1452. <td>
  1453. <code>prefix</code></br>
  1454. <em>
  1455. string
  1456. </em>
  1457. </td>
  1458. <td>
  1459. <em>(Optional)</em>
  1460. <p>Prefix adds a prefix to all retrieved values.</p>
  1461. </td>
  1462. </tr>
  1463. </tbody>
  1464. </table>
  1465. <h3 id="external-secrets.io/v1.AWSServiceType">AWSServiceType
  1466. (<code>string</code> alias)</p></h3>
  1467. <p>
  1468. (<em>Appears on:</em>
  1469. <a href="#external-secrets.io/v1.AWSProvider">AWSProvider</a>)
  1470. </p>
  1471. <p>
  1472. <p>AWSServiceType is a enum that defines the service/API that is used to fetch the secrets.</p>
  1473. </p>
  1474. <table>
  1475. <thead>
  1476. <tr>
  1477. <th>Value</th>
  1478. <th>Description</th>
  1479. </tr>
  1480. </thead>
  1481. <tbody><tr><td><p>&#34;ParameterStore&#34;</p></td>
  1482. <td><p>AWSServiceParameterStore is the AWS SystemsManager ParameterStore service.
  1483. see: <a href="https://docs.aws.amazon.com/systems-manager/latest/userguide/systems-manager-parameter-store.html">https://docs.aws.amazon.com/systems-manager/latest/userguide/systems-manager-parameter-store.html</a></p>
  1484. </td>
  1485. </tr><tr><td><p>&#34;SecretsManager&#34;</p></td>
  1486. <td><p>AWSServiceSecretsManager is the AWS SecretsManager service.
  1487. see: <a href="https://docs.aws.amazon.com/secretsmanager/latest/userguide/intro.html">https://docs.aws.amazon.com/secretsmanager/latest/userguide/intro.html</a></p>
  1488. </td>
  1489. </tr></tbody>
  1490. </table>
  1491. <h3 id="external-secrets.io/v1.AkeylessAuth">AkeylessAuth
  1492. </h3>
  1493. <p>
  1494. (<em>Appears on:</em>
  1495. <a href="#external-secrets.io/v1.AkeylessProvider">AkeylessProvider</a>)
  1496. </p>
  1497. <p>
  1498. </p>
  1499. <table>
  1500. <thead>
  1501. <tr>
  1502. <th>Field</th>
  1503. <th>Description</th>
  1504. </tr>
  1505. </thead>
  1506. <tbody>
  1507. <tr>
  1508. <td>
  1509. <code>secretRef</code></br>
  1510. <em>
  1511. <a href="#external-secrets.io/v1.AkeylessAuthSecretRef">
  1512. AkeylessAuthSecretRef
  1513. </a>
  1514. </em>
  1515. </td>
  1516. <td>
  1517. <em>(Optional)</em>
  1518. <p>Reference to a Secret that contains the details
  1519. to authenticate with Akeyless.</p>
  1520. </td>
  1521. </tr>
  1522. <tr>
  1523. <td>
  1524. <code>kubernetesAuth</code></br>
  1525. <em>
  1526. <a href="#external-secrets.io/v1.AkeylessKubernetesAuth">
  1527. AkeylessKubernetesAuth
  1528. </a>
  1529. </em>
  1530. </td>
  1531. <td>
  1532. <em>(Optional)</em>
  1533. <p>Kubernetes authenticates with Akeyless by passing the ServiceAccount
  1534. token stored in the named Secret resource.</p>
  1535. </td>
  1536. </tr>
  1537. </tbody>
  1538. </table>
  1539. <h3 id="external-secrets.io/v1.AkeylessAuthSecretRef">AkeylessAuthSecretRef
  1540. </h3>
  1541. <p>
  1542. (<em>Appears on:</em>
  1543. <a href="#external-secrets.io/v1.AkeylessAuth">AkeylessAuth</a>)
  1544. </p>
  1545. <p>
  1546. <p>AkeylessAuthSecretRef
  1547. AKEYLESS_ACCESS_TYPE_PARAM: AZURE_OBJ_ID OR GCP_AUDIENCE OR ACCESS_KEY OR KUB_CONFIG_NAME.</p>
  1548. </p>
  1549. <table>
  1550. <thead>
  1551. <tr>
  1552. <th>Field</th>
  1553. <th>Description</th>
  1554. </tr>
  1555. </thead>
  1556. <tbody>
  1557. <tr>
  1558. <td>
  1559. <code>accessID</code></br>
  1560. <em>
  1561. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1562. External Secrets meta/v1.SecretKeySelector
  1563. </a>
  1564. </em>
  1565. </td>
  1566. <td>
  1567. <p>The SecretAccessID is used for authentication</p>
  1568. </td>
  1569. </tr>
  1570. <tr>
  1571. <td>
  1572. <code>accessType</code></br>
  1573. <em>
  1574. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1575. External Secrets meta/v1.SecretKeySelector
  1576. </a>
  1577. </em>
  1578. </td>
  1579. <td>
  1580. </td>
  1581. </tr>
  1582. <tr>
  1583. <td>
  1584. <code>accessTypeParam</code></br>
  1585. <em>
  1586. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1587. External Secrets meta/v1.SecretKeySelector
  1588. </a>
  1589. </em>
  1590. </td>
  1591. <td>
  1592. </td>
  1593. </tr>
  1594. </tbody>
  1595. </table>
  1596. <h3 id="external-secrets.io/v1.AkeylessKubernetesAuth">AkeylessKubernetesAuth
  1597. </h3>
  1598. <p>
  1599. (<em>Appears on:</em>
  1600. <a href="#external-secrets.io/v1.AkeylessAuth">AkeylessAuth</a>)
  1601. </p>
  1602. <p>
  1603. <p>Authenticate with Kubernetes ServiceAccount token stored.</p>
  1604. </p>
  1605. <table>
  1606. <thead>
  1607. <tr>
  1608. <th>Field</th>
  1609. <th>Description</th>
  1610. </tr>
  1611. </thead>
  1612. <tbody>
  1613. <tr>
  1614. <td>
  1615. <code>accessID</code></br>
  1616. <em>
  1617. string
  1618. </em>
  1619. </td>
  1620. <td>
  1621. <p>the Akeyless Kubernetes auth-method access-id</p>
  1622. </td>
  1623. </tr>
  1624. <tr>
  1625. <td>
  1626. <code>k8sConfName</code></br>
  1627. <em>
  1628. string
  1629. </em>
  1630. </td>
  1631. <td>
  1632. <p>Kubernetes-auth configuration name in Akeyless-Gateway</p>
  1633. </td>
  1634. </tr>
  1635. <tr>
  1636. <td>
  1637. <code>serviceAccountRef</code></br>
  1638. <em>
  1639. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  1640. External Secrets meta/v1.ServiceAccountSelector
  1641. </a>
  1642. </em>
  1643. </td>
  1644. <td>
  1645. <em>(Optional)</em>
  1646. <p>Optional service account field containing the name of a kubernetes ServiceAccount.
  1647. If the service account is specified, the service account secret token JWT will be used
  1648. for authenticating with Akeyless. If the service account selector is not supplied,
  1649. the secretRef will be used instead.</p>
  1650. </td>
  1651. </tr>
  1652. <tr>
  1653. <td>
  1654. <code>secretRef</code></br>
  1655. <em>
  1656. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1657. External Secrets meta/v1.SecretKeySelector
  1658. </a>
  1659. </em>
  1660. </td>
  1661. <td>
  1662. <em>(Optional)</em>
  1663. <p>Optional secret field containing a Kubernetes ServiceAccount JWT used
  1664. for authenticating with Akeyless. If a name is specified without a key,
  1665. <code>token</code> is the default. If one is not specified, the one bound to
  1666. the controller will be used.</p>
  1667. </td>
  1668. </tr>
  1669. </tbody>
  1670. </table>
  1671. <h3 id="external-secrets.io/v1.AkeylessProvider">AkeylessProvider
  1672. </h3>
  1673. <p>
  1674. (<em>Appears on:</em>
  1675. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  1676. </p>
  1677. <p>
  1678. <p>AkeylessProvider Configures an store to sync secrets using Akeyless KV.</p>
  1679. </p>
  1680. <table>
  1681. <thead>
  1682. <tr>
  1683. <th>Field</th>
  1684. <th>Description</th>
  1685. </tr>
  1686. </thead>
  1687. <tbody>
  1688. <tr>
  1689. <td>
  1690. <code>akeylessGWApiURL</code></br>
  1691. <em>
  1692. string
  1693. </em>
  1694. </td>
  1695. <td>
  1696. <p>Akeyless GW API Url from which the secrets to be fetched from.</p>
  1697. </td>
  1698. </tr>
  1699. <tr>
  1700. <td>
  1701. <code>authSecretRef</code></br>
  1702. <em>
  1703. <a href="#external-secrets.io/v1.AkeylessAuth">
  1704. AkeylessAuth
  1705. </a>
  1706. </em>
  1707. </td>
  1708. <td>
  1709. <p>Auth configures how the operator authenticates with Akeyless.</p>
  1710. </td>
  1711. </tr>
  1712. <tr>
  1713. <td>
  1714. <code>caBundle</code></br>
  1715. <em>
  1716. []byte
  1717. </em>
  1718. </td>
  1719. <td>
  1720. <em>(Optional)</em>
  1721. <p>PEM/base64 encoded CA bundle used to validate Akeyless Gateway certificate. Only used
  1722. if the AkeylessGWApiURL URL is using HTTPS protocol. If not set the system root certificates
  1723. are used to validate the TLS connection.</p>
  1724. </td>
  1725. </tr>
  1726. <tr>
  1727. <td>
  1728. <code>caProvider</code></br>
  1729. <em>
  1730. <a href="#external-secrets.io/v1.CAProvider">
  1731. CAProvider
  1732. </a>
  1733. </em>
  1734. </td>
  1735. <td>
  1736. <em>(Optional)</em>
  1737. <p>The provider for the CA bundle to use to validate Akeyless Gateway certificate.</p>
  1738. </td>
  1739. </tr>
  1740. </tbody>
  1741. </table>
  1742. <h3 id="external-secrets.io/v1.AlibabaAuth">AlibabaAuth
  1743. </h3>
  1744. <p>
  1745. (<em>Appears on:</em>
  1746. <a href="#external-secrets.io/v1.AlibabaProvider">AlibabaProvider</a>)
  1747. </p>
  1748. <p>
  1749. <p>AlibabaAuth contains a secretRef for credentials.</p>
  1750. </p>
  1751. <table>
  1752. <thead>
  1753. <tr>
  1754. <th>Field</th>
  1755. <th>Description</th>
  1756. </tr>
  1757. </thead>
  1758. <tbody>
  1759. <tr>
  1760. <td>
  1761. <code>secretRef</code></br>
  1762. <em>
  1763. <a href="#external-secrets.io/v1.AlibabaAuthSecretRef">
  1764. AlibabaAuthSecretRef
  1765. </a>
  1766. </em>
  1767. </td>
  1768. <td>
  1769. <em>(Optional)</em>
  1770. </td>
  1771. </tr>
  1772. <tr>
  1773. <td>
  1774. <code>rrsa</code></br>
  1775. <em>
  1776. <a href="#external-secrets.io/v1.AlibabaRRSAAuth">
  1777. AlibabaRRSAAuth
  1778. </a>
  1779. </em>
  1780. </td>
  1781. <td>
  1782. <em>(Optional)</em>
  1783. </td>
  1784. </tr>
  1785. </tbody>
  1786. </table>
  1787. <h3 id="external-secrets.io/v1.AlibabaAuthSecretRef">AlibabaAuthSecretRef
  1788. </h3>
  1789. <p>
  1790. (<em>Appears on:</em>
  1791. <a href="#external-secrets.io/v1.AlibabaAuth">AlibabaAuth</a>)
  1792. </p>
  1793. <p>
  1794. <p>AlibabaAuthSecretRef holds secret references for Alibaba credentials.</p>
  1795. </p>
  1796. <table>
  1797. <thead>
  1798. <tr>
  1799. <th>Field</th>
  1800. <th>Description</th>
  1801. </tr>
  1802. </thead>
  1803. <tbody>
  1804. <tr>
  1805. <td>
  1806. <code>accessKeyIDSecretRef</code></br>
  1807. <em>
  1808. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1809. External Secrets meta/v1.SecretKeySelector
  1810. </a>
  1811. </em>
  1812. </td>
  1813. <td>
  1814. <p>The AccessKeyID is used for authentication</p>
  1815. </td>
  1816. </tr>
  1817. <tr>
  1818. <td>
  1819. <code>accessKeySecretSecretRef</code></br>
  1820. <em>
  1821. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1822. External Secrets meta/v1.SecretKeySelector
  1823. </a>
  1824. </em>
  1825. </td>
  1826. <td>
  1827. <p>The AccessKeySecret is used for authentication</p>
  1828. </td>
  1829. </tr>
  1830. </tbody>
  1831. </table>
  1832. <h3 id="external-secrets.io/v1.AlibabaProvider">AlibabaProvider
  1833. </h3>
  1834. <p>
  1835. (<em>Appears on:</em>
  1836. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  1837. </p>
  1838. <p>
  1839. <p>AlibabaProvider configures a store to sync secrets using the Alibaba Secret Manager provider.</p>
  1840. </p>
  1841. <table>
  1842. <thead>
  1843. <tr>
  1844. <th>Field</th>
  1845. <th>Description</th>
  1846. </tr>
  1847. </thead>
  1848. <tbody>
  1849. <tr>
  1850. <td>
  1851. <code>auth</code></br>
  1852. <em>
  1853. <a href="#external-secrets.io/v1.AlibabaAuth">
  1854. AlibabaAuth
  1855. </a>
  1856. </em>
  1857. </td>
  1858. <td>
  1859. </td>
  1860. </tr>
  1861. <tr>
  1862. <td>
  1863. <code>regionID</code></br>
  1864. <em>
  1865. string
  1866. </em>
  1867. </td>
  1868. <td>
  1869. <p>Alibaba Region to be used for the provider</p>
  1870. </td>
  1871. </tr>
  1872. </tbody>
  1873. </table>
  1874. <h3 id="external-secrets.io/v1.AlibabaRRSAAuth">AlibabaRRSAAuth
  1875. </h3>
  1876. <p>
  1877. (<em>Appears on:</em>
  1878. <a href="#external-secrets.io/v1.AlibabaAuth">AlibabaAuth</a>)
  1879. </p>
  1880. <p>
  1881. <p>Authenticate against Alibaba using RRSA.</p>
  1882. </p>
  1883. <table>
  1884. <thead>
  1885. <tr>
  1886. <th>Field</th>
  1887. <th>Description</th>
  1888. </tr>
  1889. </thead>
  1890. <tbody>
  1891. <tr>
  1892. <td>
  1893. <code>oidcProviderArn</code></br>
  1894. <em>
  1895. string
  1896. </em>
  1897. </td>
  1898. <td>
  1899. </td>
  1900. </tr>
  1901. <tr>
  1902. <td>
  1903. <code>oidcTokenFilePath</code></br>
  1904. <em>
  1905. string
  1906. </em>
  1907. </td>
  1908. <td>
  1909. </td>
  1910. </tr>
  1911. <tr>
  1912. <td>
  1913. <code>roleArn</code></br>
  1914. <em>
  1915. string
  1916. </em>
  1917. </td>
  1918. <td>
  1919. </td>
  1920. </tr>
  1921. <tr>
  1922. <td>
  1923. <code>sessionName</code></br>
  1924. <em>
  1925. string
  1926. </em>
  1927. </td>
  1928. <td>
  1929. </td>
  1930. </tr>
  1931. </tbody>
  1932. </table>
  1933. <h3 id="external-secrets.io/v1.AuthorizationProtocol">AuthorizationProtocol
  1934. </h3>
  1935. <p>
  1936. (<em>Appears on:</em>
  1937. <a href="#external-secrets.io/v1.WebhookProvider">WebhookProvider</a>)
  1938. </p>
  1939. <p>
  1940. <p>AuthorizationProtocol contains the protocol-specific configuration</p>
  1941. </p>
  1942. <table>
  1943. <thead>
  1944. <tr>
  1945. <th>Field</th>
  1946. <th>Description</th>
  1947. </tr>
  1948. </thead>
  1949. <tbody>
  1950. <tr>
  1951. <td>
  1952. <code>ntlm</code></br>
  1953. <em>
  1954. <a href="#external-secrets.io/v1.NTLMProtocol">
  1955. NTLMProtocol
  1956. </a>
  1957. </em>
  1958. </td>
  1959. <td>
  1960. <em>(Optional)</em>
  1961. <p>NTLMProtocol configures the store to use NTLM for auth</p>
  1962. </td>
  1963. </tr>
  1964. </tbody>
  1965. </table>
  1966. <h3 id="external-secrets.io/v1.AzureAuthCredentials">AzureAuthCredentials
  1967. </h3>
  1968. <p>
  1969. (<em>Appears on:</em>
  1970. <a href="#external-secrets.io/v1.InfisicalAuth">InfisicalAuth</a>)
  1971. </p>
  1972. <p>
  1973. </p>
  1974. <table>
  1975. <thead>
  1976. <tr>
  1977. <th>Field</th>
  1978. <th>Description</th>
  1979. </tr>
  1980. </thead>
  1981. <tbody>
  1982. <tr>
  1983. <td>
  1984. <code>identityId</code></br>
  1985. <em>
  1986. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1987. External Secrets meta/v1.SecretKeySelector
  1988. </a>
  1989. </em>
  1990. </td>
  1991. <td>
  1992. </td>
  1993. </tr>
  1994. <tr>
  1995. <td>
  1996. <code>resource</code></br>
  1997. <em>
  1998. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1999. External Secrets meta/v1.SecretKeySelector
  2000. </a>
  2001. </em>
  2002. </td>
  2003. <td>
  2004. <em>(Optional)</em>
  2005. </td>
  2006. </tr>
  2007. </tbody>
  2008. </table>
  2009. <h3 id="external-secrets.io/v1.AzureAuthType">AzureAuthType
  2010. (<code>string</code> alias)</p></h3>
  2011. <p>
  2012. (<em>Appears on:</em>
  2013. <a href="#external-secrets.io/v1.AzureKVProvider">AzureKVProvider</a>)
  2014. </p>
  2015. <p>
  2016. <p>AuthType describes how to authenticate to the Azure Keyvault
  2017. Only one of the following auth types may be specified.
  2018. If none of the following auth type is specified, the default one
  2019. is ServicePrincipal.</p>
  2020. </p>
  2021. <table>
  2022. <thead>
  2023. <tr>
  2024. <th>Value</th>
  2025. <th>Description</th>
  2026. </tr>
  2027. </thead>
  2028. <tbody><tr><td><p>&#34;ManagedIdentity&#34;</p></td>
  2029. <td><p>Using Managed Identity to authenticate. Used with aad-pod-identity installed in the cluster.</p>
  2030. </td>
  2031. </tr><tr><td><p>&#34;ServicePrincipal&#34;</p></td>
  2032. <td><p>Using service principal to authenticate, which needs a tenantId, a clientId and a clientSecret.</p>
  2033. </td>
  2034. </tr><tr><td><p>&#34;WorkloadIdentity&#34;</p></td>
  2035. <td><p>Using Workload Identity service accounts to authenticate.</p>
  2036. </td>
  2037. </tr></tbody>
  2038. </table>
  2039. <h3 id="external-secrets.io/v1.AzureEnvironmentType">AzureEnvironmentType
  2040. (<code>string</code> alias)</p></h3>
  2041. <p>
  2042. (<em>Appears on:</em>
  2043. <a href="#external-secrets.io/v1.AzureKVProvider">AzureKVProvider</a>)
  2044. </p>
  2045. <p>
  2046. <p>AzureEnvironmentType specifies the Azure cloud environment endpoints to use for
  2047. connecting and authenticating with Azure. By default it points to the public cloud AAD endpoint.
  2048. The following endpoints are available, also see here: <a href="https://github.com/Azure/go-autorest/blob/main/autorest/azure/environments.go#L152">https://github.com/Azure/go-autorest/blob/main/autorest/azure/environments.go#L152</a>
  2049. PublicCloud, USGovernmentCloud, ChinaCloud, GermanCloud</p>
  2050. </p>
  2051. <table>
  2052. <thead>
  2053. <tr>
  2054. <th>Value</th>
  2055. <th>Description</th>
  2056. </tr>
  2057. </thead>
  2058. <tbody><tr><td><p>&#34;ChinaCloud&#34;</p></td>
  2059. <td></td>
  2060. </tr><tr><td><p>&#34;GermanCloud&#34;</p></td>
  2061. <td></td>
  2062. </tr><tr><td><p>&#34;PublicCloud&#34;</p></td>
  2063. <td></td>
  2064. </tr><tr><td><p>&#34;USGovernmentCloud&#34;</p></td>
  2065. <td></td>
  2066. </tr></tbody>
  2067. </table>
  2068. <h3 id="external-secrets.io/v1.AzureKVAuth">AzureKVAuth
  2069. </h3>
  2070. <p>
  2071. (<em>Appears on:</em>
  2072. <a href="#external-secrets.io/v1.AzureKVProvider">AzureKVProvider</a>)
  2073. </p>
  2074. <p>
  2075. <p>Configuration used to authenticate with Azure.</p>
  2076. </p>
  2077. <table>
  2078. <thead>
  2079. <tr>
  2080. <th>Field</th>
  2081. <th>Description</th>
  2082. </tr>
  2083. </thead>
  2084. <tbody>
  2085. <tr>
  2086. <td>
  2087. <code>clientId</code></br>
  2088. <em>
  2089. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  2090. External Secrets meta/v1.SecretKeySelector
  2091. </a>
  2092. </em>
  2093. </td>
  2094. <td>
  2095. <em>(Optional)</em>
  2096. <p>The Azure clientId of the service principle or managed identity used for authentication.</p>
  2097. </td>
  2098. </tr>
  2099. <tr>
  2100. <td>
  2101. <code>tenantId</code></br>
  2102. <em>
  2103. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  2104. External Secrets meta/v1.SecretKeySelector
  2105. </a>
  2106. </em>
  2107. </td>
  2108. <td>
  2109. <em>(Optional)</em>
  2110. <p>The Azure tenantId of the managed identity used for authentication.</p>
  2111. </td>
  2112. </tr>
  2113. <tr>
  2114. <td>
  2115. <code>clientSecret</code></br>
  2116. <em>
  2117. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  2118. External Secrets meta/v1.SecretKeySelector
  2119. </a>
  2120. </em>
  2121. </td>
  2122. <td>
  2123. <em>(Optional)</em>
  2124. <p>The Azure ClientSecret of the service principle used for authentication.</p>
  2125. </td>
  2126. </tr>
  2127. <tr>
  2128. <td>
  2129. <code>clientCertificate</code></br>
  2130. <em>
  2131. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  2132. External Secrets meta/v1.SecretKeySelector
  2133. </a>
  2134. </em>
  2135. </td>
  2136. <td>
  2137. <em>(Optional)</em>
  2138. <p>The Azure ClientCertificate of the service principle used for authentication.</p>
  2139. </td>
  2140. </tr>
  2141. </tbody>
  2142. </table>
  2143. <h3 id="external-secrets.io/v1.AzureKVProvider">AzureKVProvider
  2144. </h3>
  2145. <p>
  2146. (<em>Appears on:</em>
  2147. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  2148. </p>
  2149. <p>
  2150. <p>Configures an store to sync secrets using Azure KV.</p>
  2151. </p>
  2152. <table>
  2153. <thead>
  2154. <tr>
  2155. <th>Field</th>
  2156. <th>Description</th>
  2157. </tr>
  2158. </thead>
  2159. <tbody>
  2160. <tr>
  2161. <td>
  2162. <code>authType</code></br>
  2163. <em>
  2164. <a href="#external-secrets.io/v1.AzureAuthType">
  2165. AzureAuthType
  2166. </a>
  2167. </em>
  2168. </td>
  2169. <td>
  2170. <em>(Optional)</em>
  2171. <p>Auth type defines how to authenticate to the keyvault service.
  2172. Valid values are:
  2173. - &ldquo;ServicePrincipal&rdquo; (default): Using a service principal (tenantId, clientId, clientSecret)
  2174. - &ldquo;ManagedIdentity&rdquo;: Using Managed Identity assigned to the pod (see aad-pod-identity)</p>
  2175. </td>
  2176. </tr>
  2177. <tr>
  2178. <td>
  2179. <code>vaultUrl</code></br>
  2180. <em>
  2181. string
  2182. </em>
  2183. </td>
  2184. <td>
  2185. <p>Vault Url from which the secrets to be fetched from.</p>
  2186. </td>
  2187. </tr>
  2188. <tr>
  2189. <td>
  2190. <code>tenantId</code></br>
  2191. <em>
  2192. string
  2193. </em>
  2194. </td>
  2195. <td>
  2196. <em>(Optional)</em>
  2197. <p>TenantID configures the Azure Tenant to send requests to. Required for ServicePrincipal auth type. Optional for WorkloadIdentity.</p>
  2198. </td>
  2199. </tr>
  2200. <tr>
  2201. <td>
  2202. <code>environmentType</code></br>
  2203. <em>
  2204. <a href="#external-secrets.io/v1.AzureEnvironmentType">
  2205. AzureEnvironmentType
  2206. </a>
  2207. </em>
  2208. </td>
  2209. <td>
  2210. <p>EnvironmentType specifies the Azure cloud environment endpoints to use for
  2211. connecting and authenticating with Azure. By default it points to the public cloud AAD endpoint.
  2212. The following endpoints are available, also see here: <a href="https://github.com/Azure/go-autorest/blob/main/autorest/azure/environments.go#L152">https://github.com/Azure/go-autorest/blob/main/autorest/azure/environments.go#L152</a>
  2213. PublicCloud, USGovernmentCloud, ChinaCloud, GermanCloud</p>
  2214. </td>
  2215. </tr>
  2216. <tr>
  2217. <td>
  2218. <code>authSecretRef</code></br>
  2219. <em>
  2220. <a href="#external-secrets.io/v1.AzureKVAuth">
  2221. AzureKVAuth
  2222. </a>
  2223. </em>
  2224. </td>
  2225. <td>
  2226. <em>(Optional)</em>
  2227. <p>Auth configures how the operator authenticates with Azure. Required for ServicePrincipal auth type. Optional for WorkloadIdentity.</p>
  2228. </td>
  2229. </tr>
  2230. <tr>
  2231. <td>
  2232. <code>serviceAccountRef</code></br>
  2233. <em>
  2234. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  2235. External Secrets meta/v1.ServiceAccountSelector
  2236. </a>
  2237. </em>
  2238. </td>
  2239. <td>
  2240. <em>(Optional)</em>
  2241. <p>ServiceAccountRef specified the service account
  2242. that should be used when authenticating with WorkloadIdentity.</p>
  2243. </td>
  2244. </tr>
  2245. <tr>
  2246. <td>
  2247. <code>identityId</code></br>
  2248. <em>
  2249. string
  2250. </em>
  2251. </td>
  2252. <td>
  2253. <em>(Optional)</em>
  2254. <p>If multiple Managed Identity is assigned to the pod, you can select the one to be used</p>
  2255. </td>
  2256. </tr>
  2257. </tbody>
  2258. </table>
  2259. <h3 id="external-secrets.io/v1.BeyondTrustProviderSecretRef">BeyondTrustProviderSecretRef
  2260. </h3>
  2261. <p>
  2262. (<em>Appears on:</em>
  2263. <a href="#external-secrets.io/v1.BeyondtrustAuth">BeyondtrustAuth</a>)
  2264. </p>
  2265. <p>
  2266. </p>
  2267. <table>
  2268. <thead>
  2269. <tr>
  2270. <th>Field</th>
  2271. <th>Description</th>
  2272. </tr>
  2273. </thead>
  2274. <tbody>
  2275. <tr>
  2276. <td>
  2277. <code>value</code></br>
  2278. <em>
  2279. string
  2280. </em>
  2281. </td>
  2282. <td>
  2283. <em>(Optional)</em>
  2284. <p>Value can be specified directly to set a value without using a secret.</p>
  2285. </td>
  2286. </tr>
  2287. <tr>
  2288. <td>
  2289. <code>secretRef</code></br>
  2290. <em>
  2291. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  2292. External Secrets meta/v1.SecretKeySelector
  2293. </a>
  2294. </em>
  2295. </td>
  2296. <td>
  2297. <em>(Optional)</em>
  2298. <p>SecretRef references a key in a secret that will be used as value.</p>
  2299. </td>
  2300. </tr>
  2301. </tbody>
  2302. </table>
  2303. <h3 id="external-secrets.io/v1.BeyondtrustAuth">BeyondtrustAuth
  2304. </h3>
  2305. <p>
  2306. (<em>Appears on:</em>
  2307. <a href="#external-secrets.io/v1.BeyondtrustProvider">BeyondtrustProvider</a>)
  2308. </p>
  2309. <p>
  2310. <p>Configures a store to sync secrets using BeyondTrust Password Safe.</p>
  2311. </p>
  2312. <table>
  2313. <thead>
  2314. <tr>
  2315. <th>Field</th>
  2316. <th>Description</th>
  2317. </tr>
  2318. </thead>
  2319. <tbody>
  2320. <tr>
  2321. <td>
  2322. <code>apiKey</code></br>
  2323. <em>
  2324. <a href="#external-secrets.io/v1.BeyondTrustProviderSecretRef">
  2325. BeyondTrustProviderSecretRef
  2326. </a>
  2327. </em>
  2328. </td>
  2329. <td>
  2330. <p>APIKey If not provided then ClientID/ClientSecret become required.</p>
  2331. </td>
  2332. </tr>
  2333. <tr>
  2334. <td>
  2335. <code>clientId</code></br>
  2336. <em>
  2337. <a href="#external-secrets.io/v1.BeyondTrustProviderSecretRef">
  2338. BeyondTrustProviderSecretRef
  2339. </a>
  2340. </em>
  2341. </td>
  2342. <td>
  2343. <p>ClientID is the API OAuth Client ID.</p>
  2344. </td>
  2345. </tr>
  2346. <tr>
  2347. <td>
  2348. <code>clientSecret</code></br>
  2349. <em>
  2350. <a href="#external-secrets.io/v1.BeyondTrustProviderSecretRef">
  2351. BeyondTrustProviderSecretRef
  2352. </a>
  2353. </em>
  2354. </td>
  2355. <td>
  2356. <p>ClientSecret is the API OAuth Client Secret.</p>
  2357. </td>
  2358. </tr>
  2359. <tr>
  2360. <td>
  2361. <code>certificate</code></br>
  2362. <em>
  2363. <a href="#external-secrets.io/v1.BeyondTrustProviderSecretRef">
  2364. BeyondTrustProviderSecretRef
  2365. </a>
  2366. </em>
  2367. </td>
  2368. <td>
  2369. <p>Certificate (cert.pem) for use when authenticating with an OAuth client Id using a Client Certificate.</p>
  2370. </td>
  2371. </tr>
  2372. <tr>
  2373. <td>
  2374. <code>certificateKey</code></br>
  2375. <em>
  2376. <a href="#external-secrets.io/v1.BeyondTrustProviderSecretRef">
  2377. BeyondTrustProviderSecretRef
  2378. </a>
  2379. </em>
  2380. </td>
  2381. <td>
  2382. <p>Certificate private key (key.pem). For use when authenticating with an OAuth client Id</p>
  2383. </td>
  2384. </tr>
  2385. </tbody>
  2386. </table>
  2387. <h3 id="external-secrets.io/v1.BeyondtrustProvider">BeyondtrustProvider
  2388. </h3>
  2389. <p>
  2390. (<em>Appears on:</em>
  2391. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  2392. </p>
  2393. <p>
  2394. </p>
  2395. <table>
  2396. <thead>
  2397. <tr>
  2398. <th>Field</th>
  2399. <th>Description</th>
  2400. </tr>
  2401. </thead>
  2402. <tbody>
  2403. <tr>
  2404. <td>
  2405. <code>auth</code></br>
  2406. <em>
  2407. <a href="#external-secrets.io/v1.BeyondtrustAuth">
  2408. BeyondtrustAuth
  2409. </a>
  2410. </em>
  2411. </td>
  2412. <td>
  2413. <p>Auth configures how the operator authenticates with Beyondtrust.</p>
  2414. </td>
  2415. </tr>
  2416. <tr>
  2417. <td>
  2418. <code>server</code></br>
  2419. <em>
  2420. <a href="#external-secrets.io/v1.BeyondtrustServer">
  2421. BeyondtrustServer
  2422. </a>
  2423. </em>
  2424. </td>
  2425. <td>
  2426. <p>Auth configures how API server works.</p>
  2427. </td>
  2428. </tr>
  2429. </tbody>
  2430. </table>
  2431. <h3 id="external-secrets.io/v1.BeyondtrustServer">BeyondtrustServer
  2432. </h3>
  2433. <p>
  2434. (<em>Appears on:</em>
  2435. <a href="#external-secrets.io/v1.BeyondtrustProvider">BeyondtrustProvider</a>)
  2436. </p>
  2437. <p>
  2438. <p>Configures a store to sync secrets using BeyondTrust Password Safe.</p>
  2439. </p>
  2440. <table>
  2441. <thead>
  2442. <tr>
  2443. <th>Field</th>
  2444. <th>Description</th>
  2445. </tr>
  2446. </thead>
  2447. <tbody>
  2448. <tr>
  2449. <td>
  2450. <code>apiUrl</code></br>
  2451. <em>
  2452. string
  2453. </em>
  2454. </td>
  2455. <td>
  2456. </td>
  2457. </tr>
  2458. <tr>
  2459. <td>
  2460. <code>apiVersion</code></br>
  2461. <em>
  2462. string
  2463. </em>
  2464. </td>
  2465. <td>
  2466. </td>
  2467. </tr>
  2468. <tr>
  2469. <td>
  2470. <code>retrievalType</code></br>
  2471. <em>
  2472. string
  2473. </em>
  2474. </td>
  2475. <td>
  2476. <p>The secret retrieval type. SECRET = Secrets Safe (credential, text, file). MANAGED_ACCOUNT = Password Safe account associated with a system.</p>
  2477. </td>
  2478. </tr>
  2479. <tr>
  2480. <td>
  2481. <code>separator</code></br>
  2482. <em>
  2483. string
  2484. </em>
  2485. </td>
  2486. <td>
  2487. <p>A character that separates the folder names.</p>
  2488. </td>
  2489. </tr>
  2490. <tr>
  2491. <td>
  2492. <code>verifyCA</code></br>
  2493. <em>
  2494. bool
  2495. </em>
  2496. </td>
  2497. <td>
  2498. </td>
  2499. </tr>
  2500. <tr>
  2501. <td>
  2502. <code>clientTimeOutSeconds</code></br>
  2503. <em>
  2504. int
  2505. </em>
  2506. </td>
  2507. <td>
  2508. <p>Timeout specifies a time limit for requests made by this Client. The timeout includes connection time, any redirects, and reading the response body. Defaults to 45 seconds.</p>
  2509. </td>
  2510. </tr>
  2511. </tbody>
  2512. </table>
  2513. <h3 id="external-secrets.io/v1.BitwardenSecretsManagerAuth">BitwardenSecretsManagerAuth
  2514. </h3>
  2515. <p>
  2516. (<em>Appears on:</em>
  2517. <a href="#external-secrets.io/v1.BitwardenSecretsManagerProvider">BitwardenSecretsManagerProvider</a>)
  2518. </p>
  2519. <p>
  2520. <p>BitwardenSecretsManagerAuth contains the ref to the secret that contains the machine account token.</p>
  2521. </p>
  2522. <table>
  2523. <thead>
  2524. <tr>
  2525. <th>Field</th>
  2526. <th>Description</th>
  2527. </tr>
  2528. </thead>
  2529. <tbody>
  2530. <tr>
  2531. <td>
  2532. <code>secretRef</code></br>
  2533. <em>
  2534. <a href="#external-secrets.io/v1.BitwardenSecretsManagerSecretRef">
  2535. BitwardenSecretsManagerSecretRef
  2536. </a>
  2537. </em>
  2538. </td>
  2539. <td>
  2540. </td>
  2541. </tr>
  2542. </tbody>
  2543. </table>
  2544. <h3 id="external-secrets.io/v1.BitwardenSecretsManagerProvider">BitwardenSecretsManagerProvider
  2545. </h3>
  2546. <p>
  2547. (<em>Appears on:</em>
  2548. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  2549. </p>
  2550. <p>
  2551. <p>BitwardenSecretsManagerProvider configures a store to sync secrets with a Bitwarden Secrets Manager instance.</p>
  2552. </p>
  2553. <table>
  2554. <thead>
  2555. <tr>
  2556. <th>Field</th>
  2557. <th>Description</th>
  2558. </tr>
  2559. </thead>
  2560. <tbody>
  2561. <tr>
  2562. <td>
  2563. <code>apiURL</code></br>
  2564. <em>
  2565. string
  2566. </em>
  2567. </td>
  2568. <td>
  2569. </td>
  2570. </tr>
  2571. <tr>
  2572. <td>
  2573. <code>identityURL</code></br>
  2574. <em>
  2575. string
  2576. </em>
  2577. </td>
  2578. <td>
  2579. </td>
  2580. </tr>
  2581. <tr>
  2582. <td>
  2583. <code>bitwardenServerSDKURL</code></br>
  2584. <em>
  2585. string
  2586. </em>
  2587. </td>
  2588. <td>
  2589. </td>
  2590. </tr>
  2591. <tr>
  2592. <td>
  2593. <code>caBundle</code></br>
  2594. <em>
  2595. string
  2596. </em>
  2597. </td>
  2598. <td>
  2599. <em>(Optional)</em>
  2600. <p>Base64 encoded certificate for the bitwarden server sdk. The sdk MUST run with HTTPS to make sure no MITM attack
  2601. can be performed.</p>
  2602. </td>
  2603. </tr>
  2604. <tr>
  2605. <td>
  2606. <code>caProvider</code></br>
  2607. <em>
  2608. <a href="#external-secrets.io/v1.CAProvider">
  2609. CAProvider
  2610. </a>
  2611. </em>
  2612. </td>
  2613. <td>
  2614. <em>(Optional)</em>
  2615. <p>see: <a href="https://external-secrets.io/latest/spec/#external-secrets.io/v1alpha1.CAProvider">https://external-secrets.io/latest/spec/#external-secrets.io/v1alpha1.CAProvider</a></p>
  2616. </td>
  2617. </tr>
  2618. <tr>
  2619. <td>
  2620. <code>organizationID</code></br>
  2621. <em>
  2622. string
  2623. </em>
  2624. </td>
  2625. <td>
  2626. <p>OrganizationID determines which organization this secret store manages.</p>
  2627. </td>
  2628. </tr>
  2629. <tr>
  2630. <td>
  2631. <code>projectID</code></br>
  2632. <em>
  2633. string
  2634. </em>
  2635. </td>
  2636. <td>
  2637. <p>ProjectID determines which project this secret store manages.</p>
  2638. </td>
  2639. </tr>
  2640. <tr>
  2641. <td>
  2642. <code>auth</code></br>
  2643. <em>
  2644. <a href="#external-secrets.io/v1.BitwardenSecretsManagerAuth">
  2645. BitwardenSecretsManagerAuth
  2646. </a>
  2647. </em>
  2648. </td>
  2649. <td>
  2650. <p>Auth configures how secret-manager authenticates with a bitwarden machine account instance.
  2651. Make sure that the token being used has permissions on the given secret.</p>
  2652. </td>
  2653. </tr>
  2654. </tbody>
  2655. </table>
  2656. <h3 id="external-secrets.io/v1.BitwardenSecretsManagerSecretRef">BitwardenSecretsManagerSecretRef
  2657. </h3>
  2658. <p>
  2659. (<em>Appears on:</em>
  2660. <a href="#external-secrets.io/v1.BitwardenSecretsManagerAuth">BitwardenSecretsManagerAuth</a>)
  2661. </p>
  2662. <p>
  2663. <p>BitwardenSecretsManagerSecretRef contains the credential ref to the bitwarden instance.</p>
  2664. </p>
  2665. <table>
  2666. <thead>
  2667. <tr>
  2668. <th>Field</th>
  2669. <th>Description</th>
  2670. </tr>
  2671. </thead>
  2672. <tbody>
  2673. <tr>
  2674. <td>
  2675. <code>credentials</code></br>
  2676. <em>
  2677. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  2678. External Secrets meta/v1.SecretKeySelector
  2679. </a>
  2680. </em>
  2681. </td>
  2682. <td>
  2683. <p>AccessToken used for the bitwarden instance.</p>
  2684. </td>
  2685. </tr>
  2686. </tbody>
  2687. </table>
  2688. <h3 id="external-secrets.io/v1.CAProvider">CAProvider
  2689. </h3>
  2690. <p>
  2691. (<em>Appears on:</em>
  2692. <a href="#external-secrets.io/v1.AkeylessProvider">AkeylessProvider</a>,
  2693. <a href="#external-secrets.io/v1.BitwardenSecretsManagerProvider">BitwardenSecretsManagerProvider</a>,
  2694. <a href="#external-secrets.io/v1.ConjurProvider">ConjurProvider</a>,
  2695. <a href="#external-secrets.io/v1.GitlabProvider">GitlabProvider</a>,
  2696. <a href="#external-secrets.io/v1.KubernetesServer">KubernetesServer</a>,
  2697. <a href="#external-secrets.io/v1.VaultProvider">VaultProvider</a>)
  2698. </p>
  2699. <p>
  2700. <p>Used to provide custom certificate authority (CA) certificates
  2701. for a secret store. The CAProvider points to a Secret or ConfigMap resource
  2702. that contains a PEM-encoded certificate.</p>
  2703. </p>
  2704. <table>
  2705. <thead>
  2706. <tr>
  2707. <th>Field</th>
  2708. <th>Description</th>
  2709. </tr>
  2710. </thead>
  2711. <tbody>
  2712. <tr>
  2713. <td>
  2714. <code>type</code></br>
  2715. <em>
  2716. <a href="#external-secrets.io/v1.CAProviderType">
  2717. CAProviderType
  2718. </a>
  2719. </em>
  2720. </td>
  2721. <td>
  2722. <p>The type of provider to use such as &ldquo;Secret&rdquo;, or &ldquo;ConfigMap&rdquo;.</p>
  2723. </td>
  2724. </tr>
  2725. <tr>
  2726. <td>
  2727. <code>name</code></br>
  2728. <em>
  2729. string
  2730. </em>
  2731. </td>
  2732. <td>
  2733. <p>The name of the object located at the provider type.</p>
  2734. </td>
  2735. </tr>
  2736. <tr>
  2737. <td>
  2738. <code>key</code></br>
  2739. <em>
  2740. string
  2741. </em>
  2742. </td>
  2743. <td>
  2744. <p>The key where the CA certificate can be found in the Secret or ConfigMap.</p>
  2745. </td>
  2746. </tr>
  2747. <tr>
  2748. <td>
  2749. <code>namespace</code></br>
  2750. <em>
  2751. string
  2752. </em>
  2753. </td>
  2754. <td>
  2755. <em>(Optional)</em>
  2756. <p>The namespace the Provider type is in.
  2757. Can only be defined when used in a ClusterSecretStore.</p>
  2758. </td>
  2759. </tr>
  2760. </tbody>
  2761. </table>
  2762. <h3 id="external-secrets.io/v1.CAProviderType">CAProviderType
  2763. (<code>string</code> alias)</p></h3>
  2764. <p>
  2765. (<em>Appears on:</em>
  2766. <a href="#external-secrets.io/v1.CAProvider">CAProvider</a>)
  2767. </p>
  2768. <p>
  2769. </p>
  2770. <table>
  2771. <thead>
  2772. <tr>
  2773. <th>Value</th>
  2774. <th>Description</th>
  2775. </tr>
  2776. </thead>
  2777. <tbody><tr><td><p>&#34;ConfigMap&#34;</p></td>
  2778. <td></td>
  2779. </tr><tr><td><p>&#34;Secret&#34;</p></td>
  2780. <td></td>
  2781. </tr></tbody>
  2782. </table>
  2783. <h3 id="external-secrets.io/v1.CSMAuth">CSMAuth
  2784. </h3>
  2785. <p>
  2786. (<em>Appears on:</em>
  2787. <a href="#external-secrets.io/v1.CloudruSMProvider">CloudruSMProvider</a>)
  2788. </p>
  2789. <p>
  2790. <p>CSMAuth contains a secretRef for credentials.</p>
  2791. </p>
  2792. <table>
  2793. <thead>
  2794. <tr>
  2795. <th>Field</th>
  2796. <th>Description</th>
  2797. </tr>
  2798. </thead>
  2799. <tbody>
  2800. <tr>
  2801. <td>
  2802. <code>secretRef</code></br>
  2803. <em>
  2804. <a href="#external-secrets.io/v1.CSMAuthSecretRef">
  2805. CSMAuthSecretRef
  2806. </a>
  2807. </em>
  2808. </td>
  2809. <td>
  2810. <em>(Optional)</em>
  2811. </td>
  2812. </tr>
  2813. </tbody>
  2814. </table>
  2815. <h3 id="external-secrets.io/v1.CSMAuthSecretRef">CSMAuthSecretRef
  2816. </h3>
  2817. <p>
  2818. (<em>Appears on:</em>
  2819. <a href="#external-secrets.io/v1.CSMAuth">CSMAuth</a>)
  2820. </p>
  2821. <p>
  2822. <p>CSMAuthSecretRef holds secret references for Cloud.ru credentials.</p>
  2823. </p>
  2824. <table>
  2825. <thead>
  2826. <tr>
  2827. <th>Field</th>
  2828. <th>Description</th>
  2829. </tr>
  2830. </thead>
  2831. <tbody>
  2832. <tr>
  2833. <td>
  2834. <code>accessKeyIDSecretRef</code></br>
  2835. <em>
  2836. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  2837. External Secrets meta/v1.SecretKeySelector
  2838. </a>
  2839. </em>
  2840. </td>
  2841. <td>
  2842. <p>The AccessKeyID is used for authentication</p>
  2843. </td>
  2844. </tr>
  2845. <tr>
  2846. <td>
  2847. <code>accessKeySecretSecretRef</code></br>
  2848. <em>
  2849. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  2850. External Secrets meta/v1.SecretKeySelector
  2851. </a>
  2852. </em>
  2853. </td>
  2854. <td>
  2855. <p>The AccessKeySecret is used for authentication</p>
  2856. </td>
  2857. </tr>
  2858. </tbody>
  2859. </table>
  2860. <h3 id="external-secrets.io/v1.CertAuth">CertAuth
  2861. </h3>
  2862. <p>
  2863. (<em>Appears on:</em>
  2864. <a href="#external-secrets.io/v1.KubernetesAuth">KubernetesAuth</a>)
  2865. </p>
  2866. <p>
  2867. </p>
  2868. <table>
  2869. <thead>
  2870. <tr>
  2871. <th>Field</th>
  2872. <th>Description</th>
  2873. </tr>
  2874. </thead>
  2875. <tbody>
  2876. <tr>
  2877. <td>
  2878. <code>clientCert</code></br>
  2879. <em>
  2880. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  2881. External Secrets meta/v1.SecretKeySelector
  2882. </a>
  2883. </em>
  2884. </td>
  2885. <td>
  2886. </td>
  2887. </tr>
  2888. <tr>
  2889. <td>
  2890. <code>clientKey</code></br>
  2891. <em>
  2892. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  2893. External Secrets meta/v1.SecretKeySelector
  2894. </a>
  2895. </em>
  2896. </td>
  2897. <td>
  2898. </td>
  2899. </tr>
  2900. </tbody>
  2901. </table>
  2902. <h3 id="external-secrets.io/v1.ChefAuth">ChefAuth
  2903. </h3>
  2904. <p>
  2905. (<em>Appears on:</em>
  2906. <a href="#external-secrets.io/v1.ChefProvider">ChefProvider</a>)
  2907. </p>
  2908. <p>
  2909. <p>ChefAuth contains a secretRef for credentials.</p>
  2910. </p>
  2911. <table>
  2912. <thead>
  2913. <tr>
  2914. <th>Field</th>
  2915. <th>Description</th>
  2916. </tr>
  2917. </thead>
  2918. <tbody>
  2919. <tr>
  2920. <td>
  2921. <code>secretRef</code></br>
  2922. <em>
  2923. <a href="#external-secrets.io/v1.ChefAuthSecretRef">
  2924. ChefAuthSecretRef
  2925. </a>
  2926. </em>
  2927. </td>
  2928. <td>
  2929. </td>
  2930. </tr>
  2931. </tbody>
  2932. </table>
  2933. <h3 id="external-secrets.io/v1.ChefAuthSecretRef">ChefAuthSecretRef
  2934. </h3>
  2935. <p>
  2936. (<em>Appears on:</em>
  2937. <a href="#external-secrets.io/v1.ChefAuth">ChefAuth</a>)
  2938. </p>
  2939. <p>
  2940. <p>ChefAuthSecretRef holds secret references for chef server login credentials.</p>
  2941. </p>
  2942. <table>
  2943. <thead>
  2944. <tr>
  2945. <th>Field</th>
  2946. <th>Description</th>
  2947. </tr>
  2948. </thead>
  2949. <tbody>
  2950. <tr>
  2951. <td>
  2952. <code>privateKeySecretRef</code></br>
  2953. <em>
  2954. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  2955. External Secrets meta/v1.SecretKeySelector
  2956. </a>
  2957. </em>
  2958. </td>
  2959. <td>
  2960. <p>SecretKey is the Signing Key in PEM format, used for authentication.</p>
  2961. </td>
  2962. </tr>
  2963. </tbody>
  2964. </table>
  2965. <h3 id="external-secrets.io/v1.ChefProvider">ChefProvider
  2966. </h3>
  2967. <p>
  2968. (<em>Appears on:</em>
  2969. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  2970. </p>
  2971. <p>
  2972. <p>ChefProvider configures a store to sync secrets using basic chef server connection credentials.</p>
  2973. </p>
  2974. <table>
  2975. <thead>
  2976. <tr>
  2977. <th>Field</th>
  2978. <th>Description</th>
  2979. </tr>
  2980. </thead>
  2981. <tbody>
  2982. <tr>
  2983. <td>
  2984. <code>auth</code></br>
  2985. <em>
  2986. <a href="#external-secrets.io/v1.ChefAuth">
  2987. ChefAuth
  2988. </a>
  2989. </em>
  2990. </td>
  2991. <td>
  2992. <p>Auth defines the information necessary to authenticate against chef Server</p>
  2993. </td>
  2994. </tr>
  2995. <tr>
  2996. <td>
  2997. <code>username</code></br>
  2998. <em>
  2999. string
  3000. </em>
  3001. </td>
  3002. <td>
  3003. <p>UserName should be the user ID on the chef server</p>
  3004. </td>
  3005. </tr>
  3006. <tr>
  3007. <td>
  3008. <code>serverUrl</code></br>
  3009. <em>
  3010. string
  3011. </em>
  3012. </td>
  3013. <td>
  3014. <p>ServerURL is the chef server URL used to connect to. If using orgs you should include your org in the url and terminate the url with a &ldquo;/&rdquo;</p>
  3015. </td>
  3016. </tr>
  3017. </tbody>
  3018. </table>
  3019. <h3 id="external-secrets.io/v1.CloudruSMProvider">CloudruSMProvider
  3020. </h3>
  3021. <p>
  3022. (<em>Appears on:</em>
  3023. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  3024. </p>
  3025. <p>
  3026. <p>CloudruSMProvider configures a store to sync secrets using the Cloud.ru Secret Manager provider.</p>
  3027. </p>
  3028. <table>
  3029. <thead>
  3030. <tr>
  3031. <th>Field</th>
  3032. <th>Description</th>
  3033. </tr>
  3034. </thead>
  3035. <tbody>
  3036. <tr>
  3037. <td>
  3038. <code>auth</code></br>
  3039. <em>
  3040. <a href="#external-secrets.io/v1.CSMAuth">
  3041. CSMAuth
  3042. </a>
  3043. </em>
  3044. </td>
  3045. <td>
  3046. </td>
  3047. </tr>
  3048. <tr>
  3049. <td>
  3050. <code>projectID</code></br>
  3051. <em>
  3052. string
  3053. </em>
  3054. </td>
  3055. <td>
  3056. <p>ProjectID is the project, which the secrets are stored in.</p>
  3057. </td>
  3058. </tr>
  3059. </tbody>
  3060. </table>
  3061. <h3 id="external-secrets.io/v1.ClusterExternalSecret">ClusterExternalSecret
  3062. </h3>
  3063. <p>
  3064. <p>ClusterExternalSecret is the Schema for the clusterexternalsecrets API.</p>
  3065. </p>
  3066. <table>
  3067. <thead>
  3068. <tr>
  3069. <th>Field</th>
  3070. <th>Description</th>
  3071. </tr>
  3072. </thead>
  3073. <tbody>
  3074. <tr>
  3075. <td>
  3076. <code>metadata</code></br>
  3077. <em>
  3078. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#objectmeta-v1-meta">
  3079. Kubernetes meta/v1.ObjectMeta
  3080. </a>
  3081. </em>
  3082. </td>
  3083. <td>
  3084. Refer to the Kubernetes API documentation for the fields of the
  3085. <code>metadata</code> field.
  3086. </td>
  3087. </tr>
  3088. <tr>
  3089. <td>
  3090. <code>spec</code></br>
  3091. <em>
  3092. <a href="#external-secrets.io/v1.ClusterExternalSecretSpec">
  3093. ClusterExternalSecretSpec
  3094. </a>
  3095. </em>
  3096. </td>
  3097. <td>
  3098. <br/>
  3099. <br/>
  3100. <table>
  3101. <tr>
  3102. <td>
  3103. <code>externalSecretSpec</code></br>
  3104. <em>
  3105. <a href="#external-secrets.io/v1.ExternalSecretSpec">
  3106. ExternalSecretSpec
  3107. </a>
  3108. </em>
  3109. </td>
  3110. <td>
  3111. <p>The spec for the ExternalSecrets to be created</p>
  3112. </td>
  3113. </tr>
  3114. <tr>
  3115. <td>
  3116. <code>externalSecretName</code></br>
  3117. <em>
  3118. string
  3119. </em>
  3120. </td>
  3121. <td>
  3122. <em>(Optional)</em>
  3123. <p>The name of the external secrets to be created.
  3124. Defaults to the name of the ClusterExternalSecret</p>
  3125. </td>
  3126. </tr>
  3127. <tr>
  3128. <td>
  3129. <code>externalSecretMetadata</code></br>
  3130. <em>
  3131. <a href="#external-secrets.io/v1.ExternalSecretMetadata">
  3132. ExternalSecretMetadata
  3133. </a>
  3134. </em>
  3135. </td>
  3136. <td>
  3137. <em>(Optional)</em>
  3138. <p>The metadata of the external secrets to be created</p>
  3139. </td>
  3140. </tr>
  3141. <tr>
  3142. <td>
  3143. <code>namespaceSelector</code></br>
  3144. <em>
  3145. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#labelselector-v1-meta">
  3146. Kubernetes meta/v1.LabelSelector
  3147. </a>
  3148. </em>
  3149. </td>
  3150. <td>
  3151. <em>(Optional)</em>
  3152. <p>The labels to select by to find the Namespaces to create the ExternalSecrets in.
  3153. Deprecated: Use NamespaceSelectors instead.</p>
  3154. </td>
  3155. </tr>
  3156. <tr>
  3157. <td>
  3158. <code>namespaceSelectors</code></br>
  3159. <em>
  3160. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#*k8s.io/apimachinery/pkg/apis/meta/v1.labelselector--">
  3161. []*k8s.io/apimachinery/pkg/apis/meta/v1.LabelSelector
  3162. </a>
  3163. </em>
  3164. </td>
  3165. <td>
  3166. <em>(Optional)</em>
  3167. <p>A list of labels to select by to find the Namespaces to create the ExternalSecrets in. The selectors are ORed.</p>
  3168. </td>
  3169. </tr>
  3170. <tr>
  3171. <td>
  3172. <code>namespaces</code></br>
  3173. <em>
  3174. []string
  3175. </em>
  3176. </td>
  3177. <td>
  3178. <em>(Optional)</em>
  3179. <p>Choose namespaces by name. This field is ORed with anything that NamespaceSelectors ends up choosing.
  3180. Deprecated: Use NamespaceSelectors instead.</p>
  3181. </td>
  3182. </tr>
  3183. <tr>
  3184. <td>
  3185. <code>refreshTime</code></br>
  3186. <em>
  3187. <a href="https://pkg.go.dev/k8s.io/apimachinery/pkg/apis/meta/v1#Duration">
  3188. Kubernetes meta/v1.Duration
  3189. </a>
  3190. </em>
  3191. </td>
  3192. <td>
  3193. <p>The time in which the controller should reconcile its objects and recheck namespaces for labels.</p>
  3194. </td>
  3195. </tr>
  3196. </table>
  3197. </td>
  3198. </tr>
  3199. <tr>
  3200. <td>
  3201. <code>status</code></br>
  3202. <em>
  3203. <a href="#external-secrets.io/v1.ClusterExternalSecretStatus">
  3204. ClusterExternalSecretStatus
  3205. </a>
  3206. </em>
  3207. </td>
  3208. <td>
  3209. </td>
  3210. </tr>
  3211. </tbody>
  3212. </table>
  3213. <h3 id="external-secrets.io/v1.ClusterExternalSecretConditionType">ClusterExternalSecretConditionType
  3214. (<code>string</code> alias)</p></h3>
  3215. <p>
  3216. (<em>Appears on:</em>
  3217. <a href="#external-secrets.io/v1.ClusterExternalSecretStatusCondition">ClusterExternalSecretStatusCondition</a>)
  3218. </p>
  3219. <p>
  3220. </p>
  3221. <table>
  3222. <thead>
  3223. <tr>
  3224. <th>Value</th>
  3225. <th>Description</th>
  3226. </tr>
  3227. </thead>
  3228. <tbody><tr><td><p>&#34;Ready&#34;</p></td>
  3229. <td></td>
  3230. </tr></tbody>
  3231. </table>
  3232. <h3 id="external-secrets.io/v1.ClusterExternalSecretNamespaceFailure">ClusterExternalSecretNamespaceFailure
  3233. </h3>
  3234. <p>
  3235. (<em>Appears on:</em>
  3236. <a href="#external-secrets.io/v1.ClusterExternalSecretStatus">ClusterExternalSecretStatus</a>)
  3237. </p>
  3238. <p>
  3239. <p>ClusterExternalSecretNamespaceFailure represents a failed namespace deployment and it&rsquo;s reason.</p>
  3240. </p>
  3241. <table>
  3242. <thead>
  3243. <tr>
  3244. <th>Field</th>
  3245. <th>Description</th>
  3246. </tr>
  3247. </thead>
  3248. <tbody>
  3249. <tr>
  3250. <td>
  3251. <code>namespace</code></br>
  3252. <em>
  3253. string
  3254. </em>
  3255. </td>
  3256. <td>
  3257. <p>Namespace is the namespace that failed when trying to apply an ExternalSecret</p>
  3258. </td>
  3259. </tr>
  3260. <tr>
  3261. <td>
  3262. <code>reason</code></br>
  3263. <em>
  3264. string
  3265. </em>
  3266. </td>
  3267. <td>
  3268. <em>(Optional)</em>
  3269. <p>Reason is why the ExternalSecret failed to apply to the namespace</p>
  3270. </td>
  3271. </tr>
  3272. </tbody>
  3273. </table>
  3274. <h3 id="external-secrets.io/v1.ClusterExternalSecretSpec">ClusterExternalSecretSpec
  3275. </h3>
  3276. <p>
  3277. (<em>Appears on:</em>
  3278. <a href="#external-secrets.io/v1.ClusterExternalSecret">ClusterExternalSecret</a>)
  3279. </p>
  3280. <p>
  3281. <p>ClusterExternalSecretSpec defines the desired state of ClusterExternalSecret.</p>
  3282. </p>
  3283. <table>
  3284. <thead>
  3285. <tr>
  3286. <th>Field</th>
  3287. <th>Description</th>
  3288. </tr>
  3289. </thead>
  3290. <tbody>
  3291. <tr>
  3292. <td>
  3293. <code>externalSecretSpec</code></br>
  3294. <em>
  3295. <a href="#external-secrets.io/v1.ExternalSecretSpec">
  3296. ExternalSecretSpec
  3297. </a>
  3298. </em>
  3299. </td>
  3300. <td>
  3301. <p>The spec for the ExternalSecrets to be created</p>
  3302. </td>
  3303. </tr>
  3304. <tr>
  3305. <td>
  3306. <code>externalSecretName</code></br>
  3307. <em>
  3308. string
  3309. </em>
  3310. </td>
  3311. <td>
  3312. <em>(Optional)</em>
  3313. <p>The name of the external secrets to be created.
  3314. Defaults to the name of the ClusterExternalSecret</p>
  3315. </td>
  3316. </tr>
  3317. <tr>
  3318. <td>
  3319. <code>externalSecretMetadata</code></br>
  3320. <em>
  3321. <a href="#external-secrets.io/v1.ExternalSecretMetadata">
  3322. ExternalSecretMetadata
  3323. </a>
  3324. </em>
  3325. </td>
  3326. <td>
  3327. <em>(Optional)</em>
  3328. <p>The metadata of the external secrets to be created</p>
  3329. </td>
  3330. </tr>
  3331. <tr>
  3332. <td>
  3333. <code>namespaceSelector</code></br>
  3334. <em>
  3335. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#labelselector-v1-meta">
  3336. Kubernetes meta/v1.LabelSelector
  3337. </a>
  3338. </em>
  3339. </td>
  3340. <td>
  3341. <em>(Optional)</em>
  3342. <p>The labels to select by to find the Namespaces to create the ExternalSecrets in.
  3343. Deprecated: Use NamespaceSelectors instead.</p>
  3344. </td>
  3345. </tr>
  3346. <tr>
  3347. <td>
  3348. <code>namespaceSelectors</code></br>
  3349. <em>
  3350. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#*k8s.io/apimachinery/pkg/apis/meta/v1.labelselector--">
  3351. []*k8s.io/apimachinery/pkg/apis/meta/v1.LabelSelector
  3352. </a>
  3353. </em>
  3354. </td>
  3355. <td>
  3356. <em>(Optional)</em>
  3357. <p>A list of labels to select by to find the Namespaces to create the ExternalSecrets in. The selectors are ORed.</p>
  3358. </td>
  3359. </tr>
  3360. <tr>
  3361. <td>
  3362. <code>namespaces</code></br>
  3363. <em>
  3364. []string
  3365. </em>
  3366. </td>
  3367. <td>
  3368. <em>(Optional)</em>
  3369. <p>Choose namespaces by name. This field is ORed with anything that NamespaceSelectors ends up choosing.
  3370. Deprecated: Use NamespaceSelectors instead.</p>
  3371. </td>
  3372. </tr>
  3373. <tr>
  3374. <td>
  3375. <code>refreshTime</code></br>
  3376. <em>
  3377. <a href="https://pkg.go.dev/k8s.io/apimachinery/pkg/apis/meta/v1#Duration">
  3378. Kubernetes meta/v1.Duration
  3379. </a>
  3380. </em>
  3381. </td>
  3382. <td>
  3383. <p>The time in which the controller should reconcile its objects and recheck namespaces for labels.</p>
  3384. </td>
  3385. </tr>
  3386. </tbody>
  3387. </table>
  3388. <h3 id="external-secrets.io/v1.ClusterExternalSecretStatus">ClusterExternalSecretStatus
  3389. </h3>
  3390. <p>
  3391. (<em>Appears on:</em>
  3392. <a href="#external-secrets.io/v1.ClusterExternalSecret">ClusterExternalSecret</a>)
  3393. </p>
  3394. <p>
  3395. <p>ClusterExternalSecretStatus defines the observed state of ClusterExternalSecret.</p>
  3396. </p>
  3397. <table>
  3398. <thead>
  3399. <tr>
  3400. <th>Field</th>
  3401. <th>Description</th>
  3402. </tr>
  3403. </thead>
  3404. <tbody>
  3405. <tr>
  3406. <td>
  3407. <code>externalSecretName</code></br>
  3408. <em>
  3409. string
  3410. </em>
  3411. </td>
  3412. <td>
  3413. <p>ExternalSecretName is the name of the ExternalSecrets created by the ClusterExternalSecret</p>
  3414. </td>
  3415. </tr>
  3416. <tr>
  3417. <td>
  3418. <code>failedNamespaces</code></br>
  3419. <em>
  3420. <a href="#external-secrets.io/v1.ClusterExternalSecretNamespaceFailure">
  3421. []ClusterExternalSecretNamespaceFailure
  3422. </a>
  3423. </em>
  3424. </td>
  3425. <td>
  3426. <em>(Optional)</em>
  3427. <p>Failed namespaces are the namespaces that failed to apply an ExternalSecret</p>
  3428. </td>
  3429. </tr>
  3430. <tr>
  3431. <td>
  3432. <code>provisionedNamespaces</code></br>
  3433. <em>
  3434. []string
  3435. </em>
  3436. </td>
  3437. <td>
  3438. <em>(Optional)</em>
  3439. <p>ProvisionedNamespaces are the namespaces where the ClusterExternalSecret has secrets</p>
  3440. </td>
  3441. </tr>
  3442. <tr>
  3443. <td>
  3444. <code>conditions</code></br>
  3445. <em>
  3446. <a href="#external-secrets.io/v1.ClusterExternalSecretStatusCondition">
  3447. []ClusterExternalSecretStatusCondition
  3448. </a>
  3449. </em>
  3450. </td>
  3451. <td>
  3452. <em>(Optional)</em>
  3453. </td>
  3454. </tr>
  3455. </tbody>
  3456. </table>
  3457. <h3 id="external-secrets.io/v1.ClusterExternalSecretStatusCondition">ClusterExternalSecretStatusCondition
  3458. </h3>
  3459. <p>
  3460. (<em>Appears on:</em>
  3461. <a href="#external-secrets.io/v1.ClusterExternalSecretStatus">ClusterExternalSecretStatus</a>)
  3462. </p>
  3463. <p>
  3464. </p>
  3465. <table>
  3466. <thead>
  3467. <tr>
  3468. <th>Field</th>
  3469. <th>Description</th>
  3470. </tr>
  3471. </thead>
  3472. <tbody>
  3473. <tr>
  3474. <td>
  3475. <code>type</code></br>
  3476. <em>
  3477. <a href="#external-secrets.io/v1.ClusterExternalSecretConditionType">
  3478. ClusterExternalSecretConditionType
  3479. </a>
  3480. </em>
  3481. </td>
  3482. <td>
  3483. </td>
  3484. </tr>
  3485. <tr>
  3486. <td>
  3487. <code>status</code></br>
  3488. <em>
  3489. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#conditionstatus-v1-core">
  3490. Kubernetes core/v1.ConditionStatus
  3491. </a>
  3492. </em>
  3493. </td>
  3494. <td>
  3495. </td>
  3496. </tr>
  3497. <tr>
  3498. <td>
  3499. <code>message</code></br>
  3500. <em>
  3501. string
  3502. </em>
  3503. </td>
  3504. <td>
  3505. <em>(Optional)</em>
  3506. </td>
  3507. </tr>
  3508. </tbody>
  3509. </table>
  3510. <h3 id="external-secrets.io/v1.ClusterSecretStore">ClusterSecretStore
  3511. </h3>
  3512. <p>
  3513. <p>ClusterSecretStore represents a secure external location for storing secrets, which can be referenced as part of <code>storeRef</code> fields.</p>
  3514. </p>
  3515. <table>
  3516. <thead>
  3517. <tr>
  3518. <th>Field</th>
  3519. <th>Description</th>
  3520. </tr>
  3521. </thead>
  3522. <tbody>
  3523. <tr>
  3524. <td>
  3525. <code>metadata</code></br>
  3526. <em>
  3527. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#objectmeta-v1-meta">
  3528. Kubernetes meta/v1.ObjectMeta
  3529. </a>
  3530. </em>
  3531. </td>
  3532. <td>
  3533. Refer to the Kubernetes API documentation for the fields of the
  3534. <code>metadata</code> field.
  3535. </td>
  3536. </tr>
  3537. <tr>
  3538. <td>
  3539. <code>spec</code></br>
  3540. <em>
  3541. <a href="#external-secrets.io/v1.SecretStoreSpec">
  3542. SecretStoreSpec
  3543. </a>
  3544. </em>
  3545. </td>
  3546. <td>
  3547. <br/>
  3548. <br/>
  3549. <table>
  3550. <tr>
  3551. <td>
  3552. <code>controller</code></br>
  3553. <em>
  3554. string
  3555. </em>
  3556. </td>
  3557. <td>
  3558. <em>(Optional)</em>
  3559. <p>Used to select the correct ESO controller (think: ingress.ingressClassName)
  3560. The ESO controller is instantiated with a specific controller name and filters ES based on this property</p>
  3561. </td>
  3562. </tr>
  3563. <tr>
  3564. <td>
  3565. <code>provider</code></br>
  3566. <em>
  3567. <a href="#external-secrets.io/v1.SecretStoreProvider">
  3568. SecretStoreProvider
  3569. </a>
  3570. </em>
  3571. </td>
  3572. <td>
  3573. <p>Used to configure the provider. Only one provider may be set</p>
  3574. </td>
  3575. </tr>
  3576. <tr>
  3577. <td>
  3578. <code>retrySettings</code></br>
  3579. <em>
  3580. <a href="#external-secrets.io/v1.SecretStoreRetrySettings">
  3581. SecretStoreRetrySettings
  3582. </a>
  3583. </em>
  3584. </td>
  3585. <td>
  3586. <em>(Optional)</em>
  3587. <p>Used to configure http retries if failed</p>
  3588. </td>
  3589. </tr>
  3590. <tr>
  3591. <td>
  3592. <code>refreshInterval</code></br>
  3593. <em>
  3594. int
  3595. </em>
  3596. </td>
  3597. <td>
  3598. <em>(Optional)</em>
  3599. <p>Used to configure store refresh interval in seconds. Empty or 0 will default to the controller config.</p>
  3600. </td>
  3601. </tr>
  3602. <tr>
  3603. <td>
  3604. <code>conditions</code></br>
  3605. <em>
  3606. <a href="#external-secrets.io/v1.ClusterSecretStoreCondition">
  3607. []ClusterSecretStoreCondition
  3608. </a>
  3609. </em>
  3610. </td>
  3611. <td>
  3612. <em>(Optional)</em>
  3613. <p>Used to constraint a ClusterSecretStore to specific namespaces. Relevant only to ClusterSecretStore</p>
  3614. </td>
  3615. </tr>
  3616. </table>
  3617. </td>
  3618. </tr>
  3619. <tr>
  3620. <td>
  3621. <code>status</code></br>
  3622. <em>
  3623. <a href="#external-secrets.io/v1.SecretStoreStatus">
  3624. SecretStoreStatus
  3625. </a>
  3626. </em>
  3627. </td>
  3628. <td>
  3629. </td>
  3630. </tr>
  3631. </tbody>
  3632. </table>
  3633. <h3 id="external-secrets.io/v1.ClusterSecretStoreCondition">ClusterSecretStoreCondition
  3634. </h3>
  3635. <p>
  3636. (<em>Appears on:</em>
  3637. <a href="#external-secrets.io/v1.SecretStoreSpec">SecretStoreSpec</a>)
  3638. </p>
  3639. <p>
  3640. <p>ClusterSecretStoreCondition describes a condition by which to choose namespaces to process ExternalSecrets in
  3641. for a ClusterSecretStore instance.</p>
  3642. </p>
  3643. <table>
  3644. <thead>
  3645. <tr>
  3646. <th>Field</th>
  3647. <th>Description</th>
  3648. </tr>
  3649. </thead>
  3650. <tbody>
  3651. <tr>
  3652. <td>
  3653. <code>namespaceSelector</code></br>
  3654. <em>
  3655. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#labelselector-v1-meta">
  3656. Kubernetes meta/v1.LabelSelector
  3657. </a>
  3658. </em>
  3659. </td>
  3660. <td>
  3661. <em>(Optional)</em>
  3662. <p>Choose namespace using a labelSelector</p>
  3663. </td>
  3664. </tr>
  3665. <tr>
  3666. <td>
  3667. <code>namespaces</code></br>
  3668. <em>
  3669. []string
  3670. </em>
  3671. </td>
  3672. <td>
  3673. <em>(Optional)</em>
  3674. <p>Choose namespaces by name</p>
  3675. </td>
  3676. </tr>
  3677. <tr>
  3678. <td>
  3679. <code>namespaceRegexes</code></br>
  3680. <em>
  3681. []string
  3682. </em>
  3683. </td>
  3684. <td>
  3685. <em>(Optional)</em>
  3686. <p>Choose namespaces by using regex matching</p>
  3687. </td>
  3688. </tr>
  3689. </tbody>
  3690. </table>
  3691. <h3 id="external-secrets.io/v1.ConjurAPIKey">ConjurAPIKey
  3692. </h3>
  3693. <p>
  3694. (<em>Appears on:</em>
  3695. <a href="#external-secrets.io/v1.ConjurAuth">ConjurAuth</a>)
  3696. </p>
  3697. <p>
  3698. </p>
  3699. <table>
  3700. <thead>
  3701. <tr>
  3702. <th>Field</th>
  3703. <th>Description</th>
  3704. </tr>
  3705. </thead>
  3706. <tbody>
  3707. <tr>
  3708. <td>
  3709. <code>account</code></br>
  3710. <em>
  3711. string
  3712. </em>
  3713. </td>
  3714. <td>
  3715. <p>Account is the Conjur organization account name.</p>
  3716. </td>
  3717. </tr>
  3718. <tr>
  3719. <td>
  3720. <code>userRef</code></br>
  3721. <em>
  3722. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  3723. External Secrets meta/v1.SecretKeySelector
  3724. </a>
  3725. </em>
  3726. </td>
  3727. <td>
  3728. <p>A reference to a specific &lsquo;key&rsquo; containing the Conjur username
  3729. within a Secret resource. In some instances, <code>key</code> is a required field.</p>
  3730. </td>
  3731. </tr>
  3732. <tr>
  3733. <td>
  3734. <code>apiKeyRef</code></br>
  3735. <em>
  3736. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  3737. External Secrets meta/v1.SecretKeySelector
  3738. </a>
  3739. </em>
  3740. </td>
  3741. <td>
  3742. <p>A reference to a specific &lsquo;key&rsquo; containing the Conjur API key
  3743. within a Secret resource. In some instances, <code>key</code> is a required field.</p>
  3744. </td>
  3745. </tr>
  3746. </tbody>
  3747. </table>
  3748. <h3 id="external-secrets.io/v1.ConjurAuth">ConjurAuth
  3749. </h3>
  3750. <p>
  3751. (<em>Appears on:</em>
  3752. <a href="#external-secrets.io/v1.ConjurProvider">ConjurProvider</a>)
  3753. </p>
  3754. <p>
  3755. </p>
  3756. <table>
  3757. <thead>
  3758. <tr>
  3759. <th>Field</th>
  3760. <th>Description</th>
  3761. </tr>
  3762. </thead>
  3763. <tbody>
  3764. <tr>
  3765. <td>
  3766. <code>apikey</code></br>
  3767. <em>
  3768. <a href="#external-secrets.io/v1.ConjurAPIKey">
  3769. ConjurAPIKey
  3770. </a>
  3771. </em>
  3772. </td>
  3773. <td>
  3774. <em>(Optional)</em>
  3775. <p>Authenticates with Conjur using an API key.</p>
  3776. </td>
  3777. </tr>
  3778. <tr>
  3779. <td>
  3780. <code>jwt</code></br>
  3781. <em>
  3782. <a href="#external-secrets.io/v1.ConjurJWT">
  3783. ConjurJWT
  3784. </a>
  3785. </em>
  3786. </td>
  3787. <td>
  3788. <em>(Optional)</em>
  3789. <p>Jwt enables JWT authentication using Kubernetes service account tokens.</p>
  3790. </td>
  3791. </tr>
  3792. </tbody>
  3793. </table>
  3794. <h3 id="external-secrets.io/v1.ConjurJWT">ConjurJWT
  3795. </h3>
  3796. <p>
  3797. (<em>Appears on:</em>
  3798. <a href="#external-secrets.io/v1.ConjurAuth">ConjurAuth</a>)
  3799. </p>
  3800. <p>
  3801. </p>
  3802. <table>
  3803. <thead>
  3804. <tr>
  3805. <th>Field</th>
  3806. <th>Description</th>
  3807. </tr>
  3808. </thead>
  3809. <tbody>
  3810. <tr>
  3811. <td>
  3812. <code>account</code></br>
  3813. <em>
  3814. string
  3815. </em>
  3816. </td>
  3817. <td>
  3818. <p>Account is the Conjur organization account name.</p>
  3819. </td>
  3820. </tr>
  3821. <tr>
  3822. <td>
  3823. <code>serviceID</code></br>
  3824. <em>
  3825. string
  3826. </em>
  3827. </td>
  3828. <td>
  3829. <p>The conjur authn jwt webservice id</p>
  3830. </td>
  3831. </tr>
  3832. <tr>
  3833. <td>
  3834. <code>hostId</code></br>
  3835. <em>
  3836. string
  3837. </em>
  3838. </td>
  3839. <td>
  3840. <em>(Optional)</em>
  3841. <p>Optional HostID for JWT authentication. This may be used depending
  3842. on how the Conjur JWT authenticator policy is configured.</p>
  3843. </td>
  3844. </tr>
  3845. <tr>
  3846. <td>
  3847. <code>secretRef</code></br>
  3848. <em>
  3849. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  3850. External Secrets meta/v1.SecretKeySelector
  3851. </a>
  3852. </em>
  3853. </td>
  3854. <td>
  3855. <em>(Optional)</em>
  3856. <p>Optional SecretRef that refers to a key in a Secret resource containing JWT token to
  3857. authenticate with Conjur using the JWT authentication method.</p>
  3858. </td>
  3859. </tr>
  3860. <tr>
  3861. <td>
  3862. <code>serviceAccountRef</code></br>
  3863. <em>
  3864. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  3865. External Secrets meta/v1.ServiceAccountSelector
  3866. </a>
  3867. </em>
  3868. </td>
  3869. <td>
  3870. <em>(Optional)</em>
  3871. <p>Optional ServiceAccountRef specifies the Kubernetes service account for which to request
  3872. a token for with the <code>TokenRequest</code> API.</p>
  3873. </td>
  3874. </tr>
  3875. </tbody>
  3876. </table>
  3877. <h3 id="external-secrets.io/v1.ConjurProvider">ConjurProvider
  3878. </h3>
  3879. <p>
  3880. (<em>Appears on:</em>
  3881. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  3882. </p>
  3883. <p>
  3884. </p>
  3885. <table>
  3886. <thead>
  3887. <tr>
  3888. <th>Field</th>
  3889. <th>Description</th>
  3890. </tr>
  3891. </thead>
  3892. <tbody>
  3893. <tr>
  3894. <td>
  3895. <code>url</code></br>
  3896. <em>
  3897. string
  3898. </em>
  3899. </td>
  3900. <td>
  3901. <p>URL is the endpoint of the Conjur instance.</p>
  3902. </td>
  3903. </tr>
  3904. <tr>
  3905. <td>
  3906. <code>caBundle</code></br>
  3907. <em>
  3908. string
  3909. </em>
  3910. </td>
  3911. <td>
  3912. <em>(Optional)</em>
  3913. <p>CABundle is a PEM encoded CA bundle that will be used to validate the Conjur server certificate.</p>
  3914. </td>
  3915. </tr>
  3916. <tr>
  3917. <td>
  3918. <code>caProvider</code></br>
  3919. <em>
  3920. <a href="#external-secrets.io/v1.CAProvider">
  3921. CAProvider
  3922. </a>
  3923. </em>
  3924. </td>
  3925. <td>
  3926. <em>(Optional)</em>
  3927. <p>Used to provide custom certificate authority (CA) certificates
  3928. for a secret store. The CAProvider points to a Secret or ConfigMap resource
  3929. that contains a PEM-encoded certificate.</p>
  3930. </td>
  3931. </tr>
  3932. <tr>
  3933. <td>
  3934. <code>auth</code></br>
  3935. <em>
  3936. <a href="#external-secrets.io/v1.ConjurAuth">
  3937. ConjurAuth
  3938. </a>
  3939. </em>
  3940. </td>
  3941. <td>
  3942. <p>Defines authentication settings for connecting to Conjur.</p>
  3943. </td>
  3944. </tr>
  3945. </tbody>
  3946. </table>
  3947. <h3 id="external-secrets.io/v1.DelineaProvider">DelineaProvider
  3948. </h3>
  3949. <p>
  3950. (<em>Appears on:</em>
  3951. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  3952. </p>
  3953. <p>
  3954. <p>See <a href="https://github.com/DelineaXPM/dsv-sdk-go/blob/main/vault/vault.go">https://github.com/DelineaXPM/dsv-sdk-go/blob/main/vault/vault.go</a>.</p>
  3955. </p>
  3956. <table>
  3957. <thead>
  3958. <tr>
  3959. <th>Field</th>
  3960. <th>Description</th>
  3961. </tr>
  3962. </thead>
  3963. <tbody>
  3964. <tr>
  3965. <td>
  3966. <code>clientId</code></br>
  3967. <em>
  3968. <a href="#external-secrets.io/v1.DelineaProviderSecretRef">
  3969. DelineaProviderSecretRef
  3970. </a>
  3971. </em>
  3972. </td>
  3973. <td>
  3974. <p>ClientID is the non-secret part of the credential.</p>
  3975. </td>
  3976. </tr>
  3977. <tr>
  3978. <td>
  3979. <code>clientSecret</code></br>
  3980. <em>
  3981. <a href="#external-secrets.io/v1.DelineaProviderSecretRef">
  3982. DelineaProviderSecretRef
  3983. </a>
  3984. </em>
  3985. </td>
  3986. <td>
  3987. <p>ClientSecret is the secret part of the credential.</p>
  3988. </td>
  3989. </tr>
  3990. <tr>
  3991. <td>
  3992. <code>tenant</code></br>
  3993. <em>
  3994. string
  3995. </em>
  3996. </td>
  3997. <td>
  3998. <p>Tenant is the chosen hostname / site name.</p>
  3999. </td>
  4000. </tr>
  4001. <tr>
  4002. <td>
  4003. <code>urlTemplate</code></br>
  4004. <em>
  4005. string
  4006. </em>
  4007. </td>
  4008. <td>
  4009. <em>(Optional)</em>
  4010. <p>URLTemplate
  4011. If unset, defaults to &ldquo;https://%s.secretsvaultcloud.%s/v1/%s%s&rdquo;.</p>
  4012. </td>
  4013. </tr>
  4014. <tr>
  4015. <td>
  4016. <code>tld</code></br>
  4017. <em>
  4018. string
  4019. </em>
  4020. </td>
  4021. <td>
  4022. <em>(Optional)</em>
  4023. <p>TLD is based on the server location that was chosen during provisioning.
  4024. If unset, defaults to &ldquo;com&rdquo;.</p>
  4025. </td>
  4026. </tr>
  4027. </tbody>
  4028. </table>
  4029. <h3 id="external-secrets.io/v1.DelineaProviderSecretRef">DelineaProviderSecretRef
  4030. </h3>
  4031. <p>
  4032. (<em>Appears on:</em>
  4033. <a href="#external-secrets.io/v1.DelineaProvider">DelineaProvider</a>)
  4034. </p>
  4035. <p>
  4036. </p>
  4037. <table>
  4038. <thead>
  4039. <tr>
  4040. <th>Field</th>
  4041. <th>Description</th>
  4042. </tr>
  4043. </thead>
  4044. <tbody>
  4045. <tr>
  4046. <td>
  4047. <code>value</code></br>
  4048. <em>
  4049. string
  4050. </em>
  4051. </td>
  4052. <td>
  4053. <em>(Optional)</em>
  4054. <p>Value can be specified directly to set a value without using a secret.</p>
  4055. </td>
  4056. </tr>
  4057. <tr>
  4058. <td>
  4059. <code>secretRef</code></br>
  4060. <em>
  4061. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  4062. External Secrets meta/v1.SecretKeySelector
  4063. </a>
  4064. </em>
  4065. </td>
  4066. <td>
  4067. <em>(Optional)</em>
  4068. <p>SecretRef references a key in a secret that will be used as value.</p>
  4069. </td>
  4070. </tr>
  4071. </tbody>
  4072. </table>
  4073. <h3 id="external-secrets.io/v1.Device42Auth">Device42Auth
  4074. </h3>
  4075. <p>
  4076. (<em>Appears on:</em>
  4077. <a href="#external-secrets.io/v1.Device42Provider">Device42Provider</a>)
  4078. </p>
  4079. <p>
  4080. </p>
  4081. <table>
  4082. <thead>
  4083. <tr>
  4084. <th>Field</th>
  4085. <th>Description</th>
  4086. </tr>
  4087. </thead>
  4088. <tbody>
  4089. <tr>
  4090. <td>
  4091. <code>secretRef</code></br>
  4092. <em>
  4093. <a href="#external-secrets.io/v1.Device42SecretRef">
  4094. Device42SecretRef
  4095. </a>
  4096. </em>
  4097. </td>
  4098. <td>
  4099. </td>
  4100. </tr>
  4101. </tbody>
  4102. </table>
  4103. <h3 id="external-secrets.io/v1.Device42Provider">Device42Provider
  4104. </h3>
  4105. <p>
  4106. (<em>Appears on:</em>
  4107. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  4108. </p>
  4109. <p>
  4110. <p>Device42Provider configures a store to sync secrets with a Device42 instance.</p>
  4111. </p>
  4112. <table>
  4113. <thead>
  4114. <tr>
  4115. <th>Field</th>
  4116. <th>Description</th>
  4117. </tr>
  4118. </thead>
  4119. <tbody>
  4120. <tr>
  4121. <td>
  4122. <code>host</code></br>
  4123. <em>
  4124. string
  4125. </em>
  4126. </td>
  4127. <td>
  4128. <p>URL configures the Device42 instance URL.</p>
  4129. </td>
  4130. </tr>
  4131. <tr>
  4132. <td>
  4133. <code>auth</code></br>
  4134. <em>
  4135. <a href="#external-secrets.io/v1.Device42Auth">
  4136. Device42Auth
  4137. </a>
  4138. </em>
  4139. </td>
  4140. <td>
  4141. <p>Auth configures how secret-manager authenticates with a Device42 instance.</p>
  4142. </td>
  4143. </tr>
  4144. </tbody>
  4145. </table>
  4146. <h3 id="external-secrets.io/v1.Device42SecretRef">Device42SecretRef
  4147. </h3>
  4148. <p>
  4149. (<em>Appears on:</em>
  4150. <a href="#external-secrets.io/v1.Device42Auth">Device42Auth</a>)
  4151. </p>
  4152. <p>
  4153. </p>
  4154. <table>
  4155. <thead>
  4156. <tr>
  4157. <th>Field</th>
  4158. <th>Description</th>
  4159. </tr>
  4160. </thead>
  4161. <tbody>
  4162. <tr>
  4163. <td>
  4164. <code>credentials</code></br>
  4165. <em>
  4166. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  4167. External Secrets meta/v1.SecretKeySelector
  4168. </a>
  4169. </em>
  4170. </td>
  4171. <td>
  4172. <em>(Optional)</em>
  4173. <p>Username / Password is used for authentication.</p>
  4174. </td>
  4175. </tr>
  4176. </tbody>
  4177. </table>
  4178. <h3 id="external-secrets.io/v1.DopplerAuth">DopplerAuth
  4179. </h3>
  4180. <p>
  4181. (<em>Appears on:</em>
  4182. <a href="#external-secrets.io/v1.DopplerProvider">DopplerProvider</a>)
  4183. </p>
  4184. <p>
  4185. </p>
  4186. <table>
  4187. <thead>
  4188. <tr>
  4189. <th>Field</th>
  4190. <th>Description</th>
  4191. </tr>
  4192. </thead>
  4193. <tbody>
  4194. <tr>
  4195. <td>
  4196. <code>secretRef</code></br>
  4197. <em>
  4198. <a href="#external-secrets.io/v1.DopplerAuthSecretRef">
  4199. DopplerAuthSecretRef
  4200. </a>
  4201. </em>
  4202. </td>
  4203. <td>
  4204. </td>
  4205. </tr>
  4206. </tbody>
  4207. </table>
  4208. <h3 id="external-secrets.io/v1.DopplerAuthSecretRef">DopplerAuthSecretRef
  4209. </h3>
  4210. <p>
  4211. (<em>Appears on:</em>
  4212. <a href="#external-secrets.io/v1.DopplerAuth">DopplerAuth</a>)
  4213. </p>
  4214. <p>
  4215. </p>
  4216. <table>
  4217. <thead>
  4218. <tr>
  4219. <th>Field</th>
  4220. <th>Description</th>
  4221. </tr>
  4222. </thead>
  4223. <tbody>
  4224. <tr>
  4225. <td>
  4226. <code>dopplerToken</code></br>
  4227. <em>
  4228. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  4229. External Secrets meta/v1.SecretKeySelector
  4230. </a>
  4231. </em>
  4232. </td>
  4233. <td>
  4234. <p>The DopplerToken is used for authentication.
  4235. See <a href="https://docs.doppler.com/reference/api#authentication">https://docs.doppler.com/reference/api#authentication</a> for auth token types.
  4236. The Key attribute defaults to dopplerToken if not specified.</p>
  4237. </td>
  4238. </tr>
  4239. </tbody>
  4240. </table>
  4241. <h3 id="external-secrets.io/v1.DopplerProvider">DopplerProvider
  4242. </h3>
  4243. <p>
  4244. (<em>Appears on:</em>
  4245. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  4246. </p>
  4247. <p>
  4248. <p>DopplerProvider configures a store to sync secrets using the Doppler provider.
  4249. Project and Config are required if not using a Service Token.</p>
  4250. </p>
  4251. <table>
  4252. <thead>
  4253. <tr>
  4254. <th>Field</th>
  4255. <th>Description</th>
  4256. </tr>
  4257. </thead>
  4258. <tbody>
  4259. <tr>
  4260. <td>
  4261. <code>auth</code></br>
  4262. <em>
  4263. <a href="#external-secrets.io/v1.DopplerAuth">
  4264. DopplerAuth
  4265. </a>
  4266. </em>
  4267. </td>
  4268. <td>
  4269. <p>Auth configures how the Operator authenticates with the Doppler API</p>
  4270. </td>
  4271. </tr>
  4272. <tr>
  4273. <td>
  4274. <code>project</code></br>
  4275. <em>
  4276. string
  4277. </em>
  4278. </td>
  4279. <td>
  4280. <em>(Optional)</em>
  4281. <p>Doppler project (required if not using a Service Token)</p>
  4282. </td>
  4283. </tr>
  4284. <tr>
  4285. <td>
  4286. <code>config</code></br>
  4287. <em>
  4288. string
  4289. </em>
  4290. </td>
  4291. <td>
  4292. <em>(Optional)</em>
  4293. <p>Doppler config (required if not using a Service Token)</p>
  4294. </td>
  4295. </tr>
  4296. <tr>
  4297. <td>
  4298. <code>nameTransformer</code></br>
  4299. <em>
  4300. string
  4301. </em>
  4302. </td>
  4303. <td>
  4304. <em>(Optional)</em>
  4305. <p>Environment variable compatible name transforms that change secret names to a different format</p>
  4306. </td>
  4307. </tr>
  4308. <tr>
  4309. <td>
  4310. <code>format</code></br>
  4311. <em>
  4312. string
  4313. </em>
  4314. </td>
  4315. <td>
  4316. <em>(Optional)</em>
  4317. <p>Format enables the downloading of secrets as a file (string)</p>
  4318. </td>
  4319. </tr>
  4320. </tbody>
  4321. </table>
  4322. <h3 id="external-secrets.io/v1.ExternalSecret">ExternalSecret
  4323. </h3>
  4324. <p>
  4325. <p>ExternalSecret is the Schema for the external-secrets API.</p>
  4326. </p>
  4327. <table>
  4328. <thead>
  4329. <tr>
  4330. <th>Field</th>
  4331. <th>Description</th>
  4332. </tr>
  4333. </thead>
  4334. <tbody>
  4335. <tr>
  4336. <td>
  4337. <code>metadata</code></br>
  4338. <em>
  4339. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#objectmeta-v1-meta">
  4340. Kubernetes meta/v1.ObjectMeta
  4341. </a>
  4342. </em>
  4343. </td>
  4344. <td>
  4345. Refer to the Kubernetes API documentation for the fields of the
  4346. <code>metadata</code> field.
  4347. </td>
  4348. </tr>
  4349. <tr>
  4350. <td>
  4351. <code>spec</code></br>
  4352. <em>
  4353. <a href="#external-secrets.io/v1.ExternalSecretSpec">
  4354. ExternalSecretSpec
  4355. </a>
  4356. </em>
  4357. </td>
  4358. <td>
  4359. <br/>
  4360. <br/>
  4361. <table>
  4362. <tr>
  4363. <td>
  4364. <code>secretStoreRef</code></br>
  4365. <em>
  4366. <a href="#external-secrets.io/v1.SecretStoreRef">
  4367. SecretStoreRef
  4368. </a>
  4369. </em>
  4370. </td>
  4371. <td>
  4372. <em>(Optional)</em>
  4373. </td>
  4374. </tr>
  4375. <tr>
  4376. <td>
  4377. <code>target</code></br>
  4378. <em>
  4379. <a href="#external-secrets.io/v1.ExternalSecretTarget">
  4380. ExternalSecretTarget
  4381. </a>
  4382. </em>
  4383. </td>
  4384. <td>
  4385. <em>(Optional)</em>
  4386. </td>
  4387. </tr>
  4388. <tr>
  4389. <td>
  4390. <code>refreshPolicy</code></br>
  4391. <em>
  4392. <a href="#external-secrets.io/v1.ExternalSecretRefreshPolicy">
  4393. ExternalSecretRefreshPolicy
  4394. </a>
  4395. </em>
  4396. </td>
  4397. <td>
  4398. <em>(Optional)</em>
  4399. <p>RefreshPolicy determines how the ExternalSecret should be refreshed:
  4400. - CreatedOnce: Creates the Secret only if it does not exist and does not update it thereafter
  4401. - Periodic: Synchronizes the Secret from the external source at regular intervals specified by refreshInterval.
  4402. No periodic updates occur if refreshInterval is 0.
  4403. - OnChange: Only synchronizes the Secret when the ExternalSecret&rsquo;s metadata or specification changes</p>
  4404. </td>
  4405. </tr>
  4406. <tr>
  4407. <td>
  4408. <code>refreshInterval</code></br>
  4409. <em>
  4410. <a href="https://pkg.go.dev/k8s.io/apimachinery/pkg/apis/meta/v1#Duration">
  4411. Kubernetes meta/v1.Duration
  4412. </a>
  4413. </em>
  4414. </td>
  4415. <td>
  4416. <p>RefreshInterval is the amount of time before the values are read again from the SecretStore provider,
  4417. specified as Golang Duration strings.
  4418. Valid time units are &ldquo;ns&rdquo;, &ldquo;us&rdquo; (or &ldquo;µs&rdquo;), &ldquo;ms&rdquo;, &ldquo;s&rdquo;, &ldquo;m&rdquo;, &ldquo;h&rdquo;
  4419. Example values: &ldquo;1h&rdquo;, &ldquo;2h30m&rdquo;, &ldquo;10s&rdquo;
  4420. May be set to zero to fetch and create it once. Defaults to 1h.</p>
  4421. </td>
  4422. </tr>
  4423. <tr>
  4424. <td>
  4425. <code>data</code></br>
  4426. <em>
  4427. <a href="#external-secrets.io/v1.ExternalSecretData">
  4428. []ExternalSecretData
  4429. </a>
  4430. </em>
  4431. </td>
  4432. <td>
  4433. <em>(Optional)</em>
  4434. <p>Data defines the connection between the Kubernetes Secret keys and the Provider data</p>
  4435. </td>
  4436. </tr>
  4437. <tr>
  4438. <td>
  4439. <code>dataFrom</code></br>
  4440. <em>
  4441. <a href="#external-secrets.io/v1.ExternalSecretDataFromRemoteRef">
  4442. []ExternalSecretDataFromRemoteRef
  4443. </a>
  4444. </em>
  4445. </td>
  4446. <td>
  4447. <em>(Optional)</em>
  4448. <p>DataFrom is used to fetch all properties from a specific Provider data
  4449. If multiple entries are specified, the Secret keys are merged in the specified order</p>
  4450. </td>
  4451. </tr>
  4452. </table>
  4453. </td>
  4454. </tr>
  4455. <tr>
  4456. <td>
  4457. <code>status</code></br>
  4458. <em>
  4459. <a href="#external-secrets.io/v1.ExternalSecretStatus">
  4460. ExternalSecretStatus
  4461. </a>
  4462. </em>
  4463. </td>
  4464. <td>
  4465. </td>
  4466. </tr>
  4467. </tbody>
  4468. </table>
  4469. <h3 id="external-secrets.io/v1.ExternalSecretConditionType">ExternalSecretConditionType
  4470. (<code>string</code> alias)</p></h3>
  4471. <p>
  4472. (<em>Appears on:</em>
  4473. <a href="#external-secrets.io/v1.ExternalSecretStatusCondition">ExternalSecretStatusCondition</a>)
  4474. </p>
  4475. <p>
  4476. </p>
  4477. <table>
  4478. <thead>
  4479. <tr>
  4480. <th>Value</th>
  4481. <th>Description</th>
  4482. </tr>
  4483. </thead>
  4484. <tbody><tr><td><p>&#34;Deleted&#34;</p></td>
  4485. <td></td>
  4486. </tr><tr><td><p>&#34;Ready&#34;</p></td>
  4487. <td></td>
  4488. </tr></tbody>
  4489. </table>
  4490. <h3 id="external-secrets.io/v1.ExternalSecretConversionStrategy">ExternalSecretConversionStrategy
  4491. (<code>string</code> alias)</p></h3>
  4492. <p>
  4493. (<em>Appears on:</em>
  4494. <a href="#external-secrets.io/v1.ExternalSecretDataRemoteRef">ExternalSecretDataRemoteRef</a>,
  4495. <a href="#external-secrets.io/v1.ExternalSecretFind">ExternalSecretFind</a>)
  4496. </p>
  4497. <p>
  4498. </p>
  4499. <table>
  4500. <thead>
  4501. <tr>
  4502. <th>Value</th>
  4503. <th>Description</th>
  4504. </tr>
  4505. </thead>
  4506. <tbody><tr><td><p>&#34;Default&#34;</p></td>
  4507. <td></td>
  4508. </tr><tr><td><p>&#34;Unicode&#34;</p></td>
  4509. <td></td>
  4510. </tr></tbody>
  4511. </table>
  4512. <h3 id="external-secrets.io/v1.ExternalSecretCreationPolicy">ExternalSecretCreationPolicy
  4513. (<code>string</code> alias)</p></h3>
  4514. <p>
  4515. (<em>Appears on:</em>
  4516. <a href="#external-secrets.io/v1.ExternalSecretTarget">ExternalSecretTarget</a>)
  4517. </p>
  4518. <p>
  4519. <p>ExternalSecretCreationPolicy defines rules on how to create the resulting Secret.</p>
  4520. </p>
  4521. <table>
  4522. <thead>
  4523. <tr>
  4524. <th>Value</th>
  4525. <th>Description</th>
  4526. </tr>
  4527. </thead>
  4528. <tbody><tr><td><p>&#34;Merge&#34;</p></td>
  4529. <td><p>Merge does not create the Secret, but merges the data fields to the Secret.</p>
  4530. </td>
  4531. </tr><tr><td><p>&#34;None&#34;</p></td>
  4532. <td><p>None does not create a Secret (future use with injector).</p>
  4533. </td>
  4534. </tr><tr><td><p>&#34;Orphan&#34;</p></td>
  4535. <td><p>Orphan creates the Secret and does not set the ownerReference.
  4536. I.e. it will be orphaned after the deletion of the ExternalSecret.</p>
  4537. </td>
  4538. </tr><tr><td><p>&#34;Owner&#34;</p></td>
  4539. <td><p>Owner creates the Secret and sets .metadata.ownerReferences to the ExternalSecret resource.</p>
  4540. </td>
  4541. </tr></tbody>
  4542. </table>
  4543. <h3 id="external-secrets.io/v1.ExternalSecretData">ExternalSecretData
  4544. </h3>
  4545. <p>
  4546. (<em>Appears on:</em>
  4547. <a href="#external-secrets.io/v1.ExternalSecretSpec">ExternalSecretSpec</a>)
  4548. </p>
  4549. <p>
  4550. <p>ExternalSecretData defines the connection between the Kubernetes Secret key (spec.data.<key>) and the Provider data.</p>
  4551. </p>
  4552. <table>
  4553. <thead>
  4554. <tr>
  4555. <th>Field</th>
  4556. <th>Description</th>
  4557. </tr>
  4558. </thead>
  4559. <tbody>
  4560. <tr>
  4561. <td>
  4562. <code>secretKey</code></br>
  4563. <em>
  4564. string
  4565. </em>
  4566. </td>
  4567. <td>
  4568. <p>The key in the Kubernetes Secret to store the value.</p>
  4569. </td>
  4570. </tr>
  4571. <tr>
  4572. <td>
  4573. <code>remoteRef</code></br>
  4574. <em>
  4575. <a href="#external-secrets.io/v1.ExternalSecretDataRemoteRef">
  4576. ExternalSecretDataRemoteRef
  4577. </a>
  4578. </em>
  4579. </td>
  4580. <td>
  4581. <p>RemoteRef points to the remote secret and defines
  4582. which secret (version/property/..) to fetch.</p>
  4583. </td>
  4584. </tr>
  4585. <tr>
  4586. <td>
  4587. <code>sourceRef</code></br>
  4588. <em>
  4589. <a href="#external-secrets.io/v1.StoreSourceRef">
  4590. StoreSourceRef
  4591. </a>
  4592. </em>
  4593. </td>
  4594. <td>
  4595. <p>SourceRef allows you to override the source
  4596. from which the value will be pulled.</p>
  4597. </td>
  4598. </tr>
  4599. </tbody>
  4600. </table>
  4601. <h3 id="external-secrets.io/v1.ExternalSecretDataFromRemoteRef">ExternalSecretDataFromRemoteRef
  4602. </h3>
  4603. <p>
  4604. (<em>Appears on:</em>
  4605. <a href="#external-secrets.io/v1.ExternalSecretSpec">ExternalSecretSpec</a>)
  4606. </p>
  4607. <p>
  4608. </p>
  4609. <table>
  4610. <thead>
  4611. <tr>
  4612. <th>Field</th>
  4613. <th>Description</th>
  4614. </tr>
  4615. </thead>
  4616. <tbody>
  4617. <tr>
  4618. <td>
  4619. <code>extract</code></br>
  4620. <em>
  4621. <a href="#external-secrets.io/v1.ExternalSecretDataRemoteRef">
  4622. ExternalSecretDataRemoteRef
  4623. </a>
  4624. </em>
  4625. </td>
  4626. <td>
  4627. <em>(Optional)</em>
  4628. <p>Used to extract multiple key/value pairs from one secret
  4629. Note: Extract does not support sourceRef.Generator or sourceRef.GeneratorRef.</p>
  4630. </td>
  4631. </tr>
  4632. <tr>
  4633. <td>
  4634. <code>find</code></br>
  4635. <em>
  4636. <a href="#external-secrets.io/v1.ExternalSecretFind">
  4637. ExternalSecretFind
  4638. </a>
  4639. </em>
  4640. </td>
  4641. <td>
  4642. <em>(Optional)</em>
  4643. <p>Used to find secrets based on tags or regular expressions
  4644. Note: Find does not support sourceRef.Generator or sourceRef.GeneratorRef.</p>
  4645. </td>
  4646. </tr>
  4647. <tr>
  4648. <td>
  4649. <code>rewrite</code></br>
  4650. <em>
  4651. <a href="#external-secrets.io/v1.ExternalSecretRewrite">
  4652. []ExternalSecretRewrite
  4653. </a>
  4654. </em>
  4655. </td>
  4656. <td>
  4657. <em>(Optional)</em>
  4658. <p>Used to rewrite secret Keys after getting them from the secret Provider
  4659. Multiple Rewrite operations can be provided. They are applied in a layered order (first to last)</p>
  4660. </td>
  4661. </tr>
  4662. <tr>
  4663. <td>
  4664. <code>sourceRef</code></br>
  4665. <em>
  4666. <a href="#external-secrets.io/v1.StoreGeneratorSourceRef">
  4667. StoreGeneratorSourceRef
  4668. </a>
  4669. </em>
  4670. </td>
  4671. <td>
  4672. <p>SourceRef points to a store or generator
  4673. which contains secret values ready to use.
  4674. Use this in combination with Extract or Find pull values out of
  4675. a specific SecretStore.
  4676. When sourceRef points to a generator Extract or Find is not supported.
  4677. The generator returns a static map of values</p>
  4678. </td>
  4679. </tr>
  4680. </tbody>
  4681. </table>
  4682. <h3 id="external-secrets.io/v1.ExternalSecretDataRemoteRef">ExternalSecretDataRemoteRef
  4683. </h3>
  4684. <p>
  4685. (<em>Appears on:</em>
  4686. <a href="#external-secrets.io/v1.ExternalSecretData">ExternalSecretData</a>,
  4687. <a href="#external-secrets.io/v1.ExternalSecretDataFromRemoteRef">ExternalSecretDataFromRemoteRef</a>)
  4688. </p>
  4689. <p>
  4690. <p>ExternalSecretDataRemoteRef defines Provider data location.</p>
  4691. </p>
  4692. <table>
  4693. <thead>
  4694. <tr>
  4695. <th>Field</th>
  4696. <th>Description</th>
  4697. </tr>
  4698. </thead>
  4699. <tbody>
  4700. <tr>
  4701. <td>
  4702. <code>key</code></br>
  4703. <em>
  4704. string
  4705. </em>
  4706. </td>
  4707. <td>
  4708. <p>Key is the key used in the Provider, mandatory</p>
  4709. </td>
  4710. </tr>
  4711. <tr>
  4712. <td>
  4713. <code>metadataPolicy</code></br>
  4714. <em>
  4715. <a href="#external-secrets.io/v1.ExternalSecretMetadataPolicy">
  4716. ExternalSecretMetadataPolicy
  4717. </a>
  4718. </em>
  4719. </td>
  4720. <td>
  4721. <em>(Optional)</em>
  4722. <p>Policy for fetching tags/labels from provider secrets, possible options are Fetch, None. Defaults to None</p>
  4723. </td>
  4724. </tr>
  4725. <tr>
  4726. <td>
  4727. <code>property</code></br>
  4728. <em>
  4729. string
  4730. </em>
  4731. </td>
  4732. <td>
  4733. <em>(Optional)</em>
  4734. <p>Used to select a specific property of the Provider value (if a map), if supported</p>
  4735. </td>
  4736. </tr>
  4737. <tr>
  4738. <td>
  4739. <code>version</code></br>
  4740. <em>
  4741. string
  4742. </em>
  4743. </td>
  4744. <td>
  4745. <em>(Optional)</em>
  4746. <p>Used to select a specific version of the Provider value, if supported</p>
  4747. </td>
  4748. </tr>
  4749. <tr>
  4750. <td>
  4751. <code>conversionStrategy</code></br>
  4752. <em>
  4753. <a href="#external-secrets.io/v1.ExternalSecretConversionStrategy">
  4754. ExternalSecretConversionStrategy
  4755. </a>
  4756. </em>
  4757. </td>
  4758. <td>
  4759. <em>(Optional)</em>
  4760. <p>Used to define a conversion Strategy</p>
  4761. </td>
  4762. </tr>
  4763. <tr>
  4764. <td>
  4765. <code>decodingStrategy</code></br>
  4766. <em>
  4767. <a href="#external-secrets.io/v1.ExternalSecretDecodingStrategy">
  4768. ExternalSecretDecodingStrategy
  4769. </a>
  4770. </em>
  4771. </td>
  4772. <td>
  4773. <em>(Optional)</em>
  4774. <p>Used to define a decoding Strategy</p>
  4775. </td>
  4776. </tr>
  4777. </tbody>
  4778. </table>
  4779. <h3 id="external-secrets.io/v1.ExternalSecretDecodingStrategy">ExternalSecretDecodingStrategy
  4780. (<code>string</code> alias)</p></h3>
  4781. <p>
  4782. (<em>Appears on:</em>
  4783. <a href="#external-secrets.io/v1.ExternalSecretDataRemoteRef">ExternalSecretDataRemoteRef</a>,
  4784. <a href="#external-secrets.io/v1.ExternalSecretFind">ExternalSecretFind</a>)
  4785. </p>
  4786. <p>
  4787. </p>
  4788. <table>
  4789. <thead>
  4790. <tr>
  4791. <th>Value</th>
  4792. <th>Description</th>
  4793. </tr>
  4794. </thead>
  4795. <tbody><tr><td><p>&#34;Auto&#34;</p></td>
  4796. <td></td>
  4797. </tr><tr><td><p>&#34;Base64&#34;</p></td>
  4798. <td></td>
  4799. </tr><tr><td><p>&#34;Base64URL&#34;</p></td>
  4800. <td></td>
  4801. </tr><tr><td><p>&#34;None&#34;</p></td>
  4802. <td></td>
  4803. </tr></tbody>
  4804. </table>
  4805. <h3 id="external-secrets.io/v1.ExternalSecretDeletionPolicy">ExternalSecretDeletionPolicy
  4806. (<code>string</code> alias)</p></h3>
  4807. <p>
  4808. (<em>Appears on:</em>
  4809. <a href="#external-secrets.io/v1.ExternalSecretTarget">ExternalSecretTarget</a>)
  4810. </p>
  4811. <p>
  4812. <p>ExternalSecretDeletionPolicy defines rules on how to delete the resulting Secret.</p>
  4813. </p>
  4814. <table>
  4815. <thead>
  4816. <tr>
  4817. <th>Value</th>
  4818. <th>Description</th>
  4819. </tr>
  4820. </thead>
  4821. <tbody><tr><td><p>&#34;Delete&#34;</p></td>
  4822. <td><p>Delete deletes the secret if all provider secrets are deleted.
  4823. If a secret gets deleted on the provider side and is not accessible
  4824. anymore this is not considered an error and the ExternalSecret
  4825. does not go into SecretSyncedError status.</p>
  4826. </td>
  4827. </tr><tr><td><p>&#34;Merge&#34;</p></td>
  4828. <td><p>Merge removes keys in the secret, but not the secret itself.
  4829. If a secret gets deleted on the provider side and is not accessible
  4830. anymore this is not considered an error and the ExternalSecret
  4831. does not go into SecretSyncedError status.</p>
  4832. </td>
  4833. </tr><tr><td><p>&#34;Retain&#34;</p></td>
  4834. <td><p>Retain will retain the secret if all provider secrets have been deleted.
  4835. If a provider secret does not exist the ExternalSecret gets into the
  4836. SecretSyncedError status.</p>
  4837. </td>
  4838. </tr></tbody>
  4839. </table>
  4840. <h3 id="external-secrets.io/v1.ExternalSecretFind">ExternalSecretFind
  4841. </h3>
  4842. <p>
  4843. (<em>Appears on:</em>
  4844. <a href="#external-secrets.io/v1.ExternalSecretDataFromRemoteRef">ExternalSecretDataFromRemoteRef</a>)
  4845. </p>
  4846. <p>
  4847. </p>
  4848. <table>
  4849. <thead>
  4850. <tr>
  4851. <th>Field</th>
  4852. <th>Description</th>
  4853. </tr>
  4854. </thead>
  4855. <tbody>
  4856. <tr>
  4857. <td>
  4858. <code>path</code></br>
  4859. <em>
  4860. string
  4861. </em>
  4862. </td>
  4863. <td>
  4864. <em>(Optional)</em>
  4865. <p>A root path to start the find operations.</p>
  4866. </td>
  4867. </tr>
  4868. <tr>
  4869. <td>
  4870. <code>name</code></br>
  4871. <em>
  4872. <a href="#external-secrets.io/v1.FindName">
  4873. FindName
  4874. </a>
  4875. </em>
  4876. </td>
  4877. <td>
  4878. <em>(Optional)</em>
  4879. <p>Finds secrets based on the name.</p>
  4880. </td>
  4881. </tr>
  4882. <tr>
  4883. <td>
  4884. <code>tags</code></br>
  4885. <em>
  4886. map[string]string
  4887. </em>
  4888. </td>
  4889. <td>
  4890. <em>(Optional)</em>
  4891. <p>Find secrets based on tags.</p>
  4892. </td>
  4893. </tr>
  4894. <tr>
  4895. <td>
  4896. <code>conversionStrategy</code></br>
  4897. <em>
  4898. <a href="#external-secrets.io/v1.ExternalSecretConversionStrategy">
  4899. ExternalSecretConversionStrategy
  4900. </a>
  4901. </em>
  4902. </td>
  4903. <td>
  4904. <em>(Optional)</em>
  4905. <p>Used to define a conversion Strategy</p>
  4906. </td>
  4907. </tr>
  4908. <tr>
  4909. <td>
  4910. <code>decodingStrategy</code></br>
  4911. <em>
  4912. <a href="#external-secrets.io/v1.ExternalSecretDecodingStrategy">
  4913. ExternalSecretDecodingStrategy
  4914. </a>
  4915. </em>
  4916. </td>
  4917. <td>
  4918. <em>(Optional)</em>
  4919. <p>Used to define a decoding Strategy</p>
  4920. </td>
  4921. </tr>
  4922. </tbody>
  4923. </table>
  4924. <h3 id="external-secrets.io/v1.ExternalSecretMetadata">ExternalSecretMetadata
  4925. </h3>
  4926. <p>
  4927. (<em>Appears on:</em>
  4928. <a href="#external-secrets.io/v1.ClusterExternalSecretSpec">ClusterExternalSecretSpec</a>)
  4929. </p>
  4930. <p>
  4931. <p>ExternalSecretMetadata defines metadata fields for the ExternalSecret generated by the ClusterExternalSecret.</p>
  4932. </p>
  4933. <table>
  4934. <thead>
  4935. <tr>
  4936. <th>Field</th>
  4937. <th>Description</th>
  4938. </tr>
  4939. </thead>
  4940. <tbody>
  4941. <tr>
  4942. <td>
  4943. <code>annotations</code></br>
  4944. <em>
  4945. map[string]string
  4946. </em>
  4947. </td>
  4948. <td>
  4949. <em>(Optional)</em>
  4950. </td>
  4951. </tr>
  4952. <tr>
  4953. <td>
  4954. <code>labels</code></br>
  4955. <em>
  4956. map[string]string
  4957. </em>
  4958. </td>
  4959. <td>
  4960. <em>(Optional)</em>
  4961. </td>
  4962. </tr>
  4963. </tbody>
  4964. </table>
  4965. <h3 id="external-secrets.io/v1.ExternalSecretMetadataPolicy">ExternalSecretMetadataPolicy
  4966. (<code>string</code> alias)</p></h3>
  4967. <p>
  4968. (<em>Appears on:</em>
  4969. <a href="#external-secrets.io/v1.ExternalSecretDataRemoteRef">ExternalSecretDataRemoteRef</a>)
  4970. </p>
  4971. <p>
  4972. </p>
  4973. <table>
  4974. <thead>
  4975. <tr>
  4976. <th>Value</th>
  4977. <th>Description</th>
  4978. </tr>
  4979. </thead>
  4980. <tbody><tr><td><p>&#34;Fetch&#34;</p></td>
  4981. <td></td>
  4982. </tr><tr><td><p>&#34;None&#34;</p></td>
  4983. <td></td>
  4984. </tr></tbody>
  4985. </table>
  4986. <h3 id="external-secrets.io/v1.ExternalSecretRefreshPolicy">ExternalSecretRefreshPolicy
  4987. (<code>string</code> alias)</p></h3>
  4988. <p>
  4989. (<em>Appears on:</em>
  4990. <a href="#external-secrets.io/v1.ExternalSecretSpec">ExternalSecretSpec</a>)
  4991. </p>
  4992. <p>
  4993. </p>
  4994. <table>
  4995. <thead>
  4996. <tr>
  4997. <th>Value</th>
  4998. <th>Description</th>
  4999. </tr>
  5000. </thead>
  5001. <tbody><tr><td><p>&#34;CreatedOnce&#34;</p></td>
  5002. <td></td>
  5003. </tr><tr><td><p>&#34;OnChange&#34;</p></td>
  5004. <td></td>
  5005. </tr><tr><td><p>&#34;Periodic&#34;</p></td>
  5006. <td></td>
  5007. </tr></tbody>
  5008. </table>
  5009. <h3 id="external-secrets.io/v1.ExternalSecretRewrite">ExternalSecretRewrite
  5010. </h3>
  5011. <p>
  5012. (<em>Appears on:</em>
  5013. <a href="#external-secrets.io/v1.ExternalSecretDataFromRemoteRef">ExternalSecretDataFromRemoteRef</a>)
  5014. </p>
  5015. <p>
  5016. </p>
  5017. <table>
  5018. <thead>
  5019. <tr>
  5020. <th>Field</th>
  5021. <th>Description</th>
  5022. </tr>
  5023. </thead>
  5024. <tbody>
  5025. <tr>
  5026. <td>
  5027. <code>merge</code></br>
  5028. <em>
  5029. <a href="#external-secrets.io/v1.ExternalSecretRewriteMerge">
  5030. ExternalSecretRewriteMerge
  5031. </a>
  5032. </em>
  5033. </td>
  5034. <td>
  5035. <em>(Optional)</em>
  5036. <p>Used to merge key/values in one single Secret
  5037. The resulting key will contain all values from the specified secrets</p>
  5038. </td>
  5039. </tr>
  5040. <tr>
  5041. <td>
  5042. <code>regexp</code></br>
  5043. <em>
  5044. <a href="#external-secrets.io/v1.ExternalSecretRewriteRegexp">
  5045. ExternalSecretRewriteRegexp
  5046. </a>
  5047. </em>
  5048. </td>
  5049. <td>
  5050. <em>(Optional)</em>
  5051. <p>Used to rewrite with regular expressions.
  5052. The resulting key will be the output of a regexp.ReplaceAll operation.</p>
  5053. </td>
  5054. </tr>
  5055. <tr>
  5056. <td>
  5057. <code>transform</code></br>
  5058. <em>
  5059. <a href="#external-secrets.io/v1.ExternalSecretRewriteTransform">
  5060. ExternalSecretRewriteTransform
  5061. </a>
  5062. </em>
  5063. </td>
  5064. <td>
  5065. <em>(Optional)</em>
  5066. <p>Used to apply string transformation on the secrets.
  5067. The resulting key will be the output of the template applied by the operation.</p>
  5068. </td>
  5069. </tr>
  5070. </tbody>
  5071. </table>
  5072. <h3 id="external-secrets.io/v1.ExternalSecretRewriteMerge">ExternalSecretRewriteMerge
  5073. </h3>
  5074. <p>
  5075. (<em>Appears on:</em>
  5076. <a href="#external-secrets.io/v1.ExternalSecretRewrite">ExternalSecretRewrite</a>)
  5077. </p>
  5078. <p>
  5079. </p>
  5080. <table>
  5081. <thead>
  5082. <tr>
  5083. <th>Field</th>
  5084. <th>Description</th>
  5085. </tr>
  5086. </thead>
  5087. <tbody>
  5088. <tr>
  5089. <td>
  5090. <code>into</code></br>
  5091. <em>
  5092. string
  5093. </em>
  5094. </td>
  5095. <td>
  5096. <em>(Optional)</em>
  5097. <p>Used to define the target key of the merge operation.
  5098. Required if strategy is JSON. Ignored otherwise.</p>
  5099. </td>
  5100. </tr>
  5101. <tr>
  5102. <td>
  5103. <code>priority</code></br>
  5104. <em>
  5105. []string
  5106. </em>
  5107. </td>
  5108. <td>
  5109. <em>(Optional)</em>
  5110. <p>Used to define key priority in conflict resolution.</p>
  5111. </td>
  5112. </tr>
  5113. <tr>
  5114. <td>
  5115. <code>conflictPolicy</code></br>
  5116. <em>
  5117. <a href="#external-secrets.io/v1.ExternalSecretRewriteMergeConflictPolicy">
  5118. ExternalSecretRewriteMergeConflictPolicy
  5119. </a>
  5120. </em>
  5121. </td>
  5122. <td>
  5123. <em>(Optional)</em>
  5124. <p>Used to define the policy to use in conflict resolution.</p>
  5125. </td>
  5126. </tr>
  5127. <tr>
  5128. <td>
  5129. <code>strategy</code></br>
  5130. <em>
  5131. <a href="#external-secrets.io/v1.ExternalSecretRewriteMergeStrategy">
  5132. ExternalSecretRewriteMergeStrategy
  5133. </a>
  5134. </em>
  5135. </td>
  5136. <td>
  5137. <em>(Optional)</em>
  5138. <p>Used to define the strategy to use in the merge operation.</p>
  5139. </td>
  5140. </tr>
  5141. </tbody>
  5142. </table>
  5143. <h3 id="external-secrets.io/v1.ExternalSecretRewriteMergeConflictPolicy">ExternalSecretRewriteMergeConflictPolicy
  5144. (<code>string</code> alias)</p></h3>
  5145. <p>
  5146. (<em>Appears on:</em>
  5147. <a href="#external-secrets.io/v1.ExternalSecretRewriteMerge">ExternalSecretRewriteMerge</a>)
  5148. </p>
  5149. <p>
  5150. </p>
  5151. <table>
  5152. <thead>
  5153. <tr>
  5154. <th>Value</th>
  5155. <th>Description</th>
  5156. </tr>
  5157. </thead>
  5158. <tbody><tr><td><p>&#34;Error&#34;</p></td>
  5159. <td></td>
  5160. </tr><tr><td><p>&#34;Ignore&#34;</p></td>
  5161. <td></td>
  5162. </tr></tbody>
  5163. </table>
  5164. <h3 id="external-secrets.io/v1.ExternalSecretRewriteMergeStrategy">ExternalSecretRewriteMergeStrategy
  5165. (<code>string</code> alias)</p></h3>
  5166. <p>
  5167. (<em>Appears on:</em>
  5168. <a href="#external-secrets.io/v1.ExternalSecretRewriteMerge">ExternalSecretRewriteMerge</a>)
  5169. </p>
  5170. <p>
  5171. </p>
  5172. <table>
  5173. <thead>
  5174. <tr>
  5175. <th>Value</th>
  5176. <th>Description</th>
  5177. </tr>
  5178. </thead>
  5179. <tbody><tr><td><p>&#34;Extract&#34;</p></td>
  5180. <td></td>
  5181. </tr><tr><td><p>&#34;JSON&#34;</p></td>
  5182. <td></td>
  5183. </tr></tbody>
  5184. </table>
  5185. <h3 id="external-secrets.io/v1.ExternalSecretRewriteRegexp">ExternalSecretRewriteRegexp
  5186. </h3>
  5187. <p>
  5188. (<em>Appears on:</em>
  5189. <a href="#external-secrets.io/v1.ExternalSecretRewrite">ExternalSecretRewrite</a>)
  5190. </p>
  5191. <p>
  5192. </p>
  5193. <table>
  5194. <thead>
  5195. <tr>
  5196. <th>Field</th>
  5197. <th>Description</th>
  5198. </tr>
  5199. </thead>
  5200. <tbody>
  5201. <tr>
  5202. <td>
  5203. <code>source</code></br>
  5204. <em>
  5205. string
  5206. </em>
  5207. </td>
  5208. <td>
  5209. <p>Used to define the regular expression of a re.Compiler.</p>
  5210. </td>
  5211. </tr>
  5212. <tr>
  5213. <td>
  5214. <code>target</code></br>
  5215. <em>
  5216. string
  5217. </em>
  5218. </td>
  5219. <td>
  5220. <p>Used to define the target pattern of a ReplaceAll operation.</p>
  5221. </td>
  5222. </tr>
  5223. </tbody>
  5224. </table>
  5225. <h3 id="external-secrets.io/v1.ExternalSecretRewriteTransform">ExternalSecretRewriteTransform
  5226. </h3>
  5227. <p>
  5228. (<em>Appears on:</em>
  5229. <a href="#external-secrets.io/v1.ExternalSecretRewrite">ExternalSecretRewrite</a>)
  5230. </p>
  5231. <p>
  5232. </p>
  5233. <table>
  5234. <thead>
  5235. <tr>
  5236. <th>Field</th>
  5237. <th>Description</th>
  5238. </tr>
  5239. </thead>
  5240. <tbody>
  5241. <tr>
  5242. <td>
  5243. <code>template</code></br>
  5244. <em>
  5245. string
  5246. </em>
  5247. </td>
  5248. <td>
  5249. <p>Used to define the template to apply on the secret name.
  5250. <code>.value</code> will specify the secret name in the template.</p>
  5251. </td>
  5252. </tr>
  5253. </tbody>
  5254. </table>
  5255. <h3 id="external-secrets.io/v1.ExternalSecretSpec">ExternalSecretSpec
  5256. </h3>
  5257. <p>
  5258. (<em>Appears on:</em>
  5259. <a href="#external-secrets.io/v1.ClusterExternalSecretSpec">ClusterExternalSecretSpec</a>,
  5260. <a href="#external-secrets.io/v1.ExternalSecret">ExternalSecret</a>)
  5261. </p>
  5262. <p>
  5263. <p>ExternalSecretSpec defines the desired state of ExternalSecret.</p>
  5264. </p>
  5265. <table>
  5266. <thead>
  5267. <tr>
  5268. <th>Field</th>
  5269. <th>Description</th>
  5270. </tr>
  5271. </thead>
  5272. <tbody>
  5273. <tr>
  5274. <td>
  5275. <code>secretStoreRef</code></br>
  5276. <em>
  5277. <a href="#external-secrets.io/v1.SecretStoreRef">
  5278. SecretStoreRef
  5279. </a>
  5280. </em>
  5281. </td>
  5282. <td>
  5283. <em>(Optional)</em>
  5284. </td>
  5285. </tr>
  5286. <tr>
  5287. <td>
  5288. <code>target</code></br>
  5289. <em>
  5290. <a href="#external-secrets.io/v1.ExternalSecretTarget">
  5291. ExternalSecretTarget
  5292. </a>
  5293. </em>
  5294. </td>
  5295. <td>
  5296. <em>(Optional)</em>
  5297. </td>
  5298. </tr>
  5299. <tr>
  5300. <td>
  5301. <code>refreshPolicy</code></br>
  5302. <em>
  5303. <a href="#external-secrets.io/v1.ExternalSecretRefreshPolicy">
  5304. ExternalSecretRefreshPolicy
  5305. </a>
  5306. </em>
  5307. </td>
  5308. <td>
  5309. <em>(Optional)</em>
  5310. <p>RefreshPolicy determines how the ExternalSecret should be refreshed:
  5311. - CreatedOnce: Creates the Secret only if it does not exist and does not update it thereafter
  5312. - Periodic: Synchronizes the Secret from the external source at regular intervals specified by refreshInterval.
  5313. No periodic updates occur if refreshInterval is 0.
  5314. - OnChange: Only synchronizes the Secret when the ExternalSecret&rsquo;s metadata or specification changes</p>
  5315. </td>
  5316. </tr>
  5317. <tr>
  5318. <td>
  5319. <code>refreshInterval</code></br>
  5320. <em>
  5321. <a href="https://pkg.go.dev/k8s.io/apimachinery/pkg/apis/meta/v1#Duration">
  5322. Kubernetes meta/v1.Duration
  5323. </a>
  5324. </em>
  5325. </td>
  5326. <td>
  5327. <p>RefreshInterval is the amount of time before the values are read again from the SecretStore provider,
  5328. specified as Golang Duration strings.
  5329. Valid time units are &ldquo;ns&rdquo;, &ldquo;us&rdquo; (or &ldquo;µs&rdquo;), &ldquo;ms&rdquo;, &ldquo;s&rdquo;, &ldquo;m&rdquo;, &ldquo;h&rdquo;
  5330. Example values: &ldquo;1h&rdquo;, &ldquo;2h30m&rdquo;, &ldquo;10s&rdquo;
  5331. May be set to zero to fetch and create it once. Defaults to 1h.</p>
  5332. </td>
  5333. </tr>
  5334. <tr>
  5335. <td>
  5336. <code>data</code></br>
  5337. <em>
  5338. <a href="#external-secrets.io/v1.ExternalSecretData">
  5339. []ExternalSecretData
  5340. </a>
  5341. </em>
  5342. </td>
  5343. <td>
  5344. <em>(Optional)</em>
  5345. <p>Data defines the connection between the Kubernetes Secret keys and the Provider data</p>
  5346. </td>
  5347. </tr>
  5348. <tr>
  5349. <td>
  5350. <code>dataFrom</code></br>
  5351. <em>
  5352. <a href="#external-secrets.io/v1.ExternalSecretDataFromRemoteRef">
  5353. []ExternalSecretDataFromRemoteRef
  5354. </a>
  5355. </em>
  5356. </td>
  5357. <td>
  5358. <em>(Optional)</em>
  5359. <p>DataFrom is used to fetch all properties from a specific Provider data
  5360. If multiple entries are specified, the Secret keys are merged in the specified order</p>
  5361. </td>
  5362. </tr>
  5363. </tbody>
  5364. </table>
  5365. <h3 id="external-secrets.io/v1.ExternalSecretStatus">ExternalSecretStatus
  5366. </h3>
  5367. <p>
  5368. (<em>Appears on:</em>
  5369. <a href="#external-secrets.io/v1.ExternalSecret">ExternalSecret</a>)
  5370. </p>
  5371. <p>
  5372. </p>
  5373. <table>
  5374. <thead>
  5375. <tr>
  5376. <th>Field</th>
  5377. <th>Description</th>
  5378. </tr>
  5379. </thead>
  5380. <tbody>
  5381. <tr>
  5382. <td>
  5383. <code>refreshTime</code></br>
  5384. <em>
  5385. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#time-v1-meta">
  5386. Kubernetes meta/v1.Time
  5387. </a>
  5388. </em>
  5389. </td>
  5390. <td>
  5391. <p>refreshTime is the time and date the external secret was fetched and
  5392. the target secret updated</p>
  5393. </td>
  5394. </tr>
  5395. <tr>
  5396. <td>
  5397. <code>syncedResourceVersion</code></br>
  5398. <em>
  5399. string
  5400. </em>
  5401. </td>
  5402. <td>
  5403. <p>SyncedResourceVersion keeps track of the last synced version</p>
  5404. </td>
  5405. </tr>
  5406. <tr>
  5407. <td>
  5408. <code>conditions</code></br>
  5409. <em>
  5410. <a href="#external-secrets.io/v1.ExternalSecretStatusCondition">
  5411. []ExternalSecretStatusCondition
  5412. </a>
  5413. </em>
  5414. </td>
  5415. <td>
  5416. <em>(Optional)</em>
  5417. </td>
  5418. </tr>
  5419. <tr>
  5420. <td>
  5421. <code>binding</code></br>
  5422. <em>
  5423. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#localobjectreference-v1-core">
  5424. Kubernetes core/v1.LocalObjectReference
  5425. </a>
  5426. </em>
  5427. </td>
  5428. <td>
  5429. <p>Binding represents a servicebinding.io Provisioned Service reference to the secret</p>
  5430. </td>
  5431. </tr>
  5432. </tbody>
  5433. </table>
  5434. <h3 id="external-secrets.io/v1.ExternalSecretStatusCondition">ExternalSecretStatusCondition
  5435. </h3>
  5436. <p>
  5437. (<em>Appears on:</em>
  5438. <a href="#external-secrets.io/v1.ExternalSecretStatus">ExternalSecretStatus</a>)
  5439. </p>
  5440. <p>
  5441. </p>
  5442. <table>
  5443. <thead>
  5444. <tr>
  5445. <th>Field</th>
  5446. <th>Description</th>
  5447. </tr>
  5448. </thead>
  5449. <tbody>
  5450. <tr>
  5451. <td>
  5452. <code>type</code></br>
  5453. <em>
  5454. <a href="#external-secrets.io/v1.ExternalSecretConditionType">
  5455. ExternalSecretConditionType
  5456. </a>
  5457. </em>
  5458. </td>
  5459. <td>
  5460. </td>
  5461. </tr>
  5462. <tr>
  5463. <td>
  5464. <code>status</code></br>
  5465. <em>
  5466. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#conditionstatus-v1-core">
  5467. Kubernetes core/v1.ConditionStatus
  5468. </a>
  5469. </em>
  5470. </td>
  5471. <td>
  5472. </td>
  5473. </tr>
  5474. <tr>
  5475. <td>
  5476. <code>reason</code></br>
  5477. <em>
  5478. string
  5479. </em>
  5480. </td>
  5481. <td>
  5482. <em>(Optional)</em>
  5483. </td>
  5484. </tr>
  5485. <tr>
  5486. <td>
  5487. <code>message</code></br>
  5488. <em>
  5489. string
  5490. </em>
  5491. </td>
  5492. <td>
  5493. <em>(Optional)</em>
  5494. </td>
  5495. </tr>
  5496. <tr>
  5497. <td>
  5498. <code>lastTransitionTime</code></br>
  5499. <em>
  5500. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#time-v1-meta">
  5501. Kubernetes meta/v1.Time
  5502. </a>
  5503. </em>
  5504. </td>
  5505. <td>
  5506. <em>(Optional)</em>
  5507. </td>
  5508. </tr>
  5509. </tbody>
  5510. </table>
  5511. <h3 id="external-secrets.io/v1.ExternalSecretTarget">ExternalSecretTarget
  5512. </h3>
  5513. <p>
  5514. (<em>Appears on:</em>
  5515. <a href="#external-secrets.io/v1.ExternalSecretSpec">ExternalSecretSpec</a>)
  5516. </p>
  5517. <p>
  5518. <p>ExternalSecretTarget defines the Kubernetes Secret to be created
  5519. There can be only one target per ExternalSecret.</p>
  5520. </p>
  5521. <table>
  5522. <thead>
  5523. <tr>
  5524. <th>Field</th>
  5525. <th>Description</th>
  5526. </tr>
  5527. </thead>
  5528. <tbody>
  5529. <tr>
  5530. <td>
  5531. <code>name</code></br>
  5532. <em>
  5533. string
  5534. </em>
  5535. </td>
  5536. <td>
  5537. <em>(Optional)</em>
  5538. <p>The name of the Secret resource to be managed.
  5539. Defaults to the .metadata.name of the ExternalSecret resource</p>
  5540. </td>
  5541. </tr>
  5542. <tr>
  5543. <td>
  5544. <code>creationPolicy</code></br>
  5545. <em>
  5546. <a href="#external-secrets.io/v1.ExternalSecretCreationPolicy">
  5547. ExternalSecretCreationPolicy
  5548. </a>
  5549. </em>
  5550. </td>
  5551. <td>
  5552. <em>(Optional)</em>
  5553. <p>CreationPolicy defines rules on how to create the resulting Secret.
  5554. Defaults to &ldquo;Owner&rdquo;</p>
  5555. </td>
  5556. </tr>
  5557. <tr>
  5558. <td>
  5559. <code>deletionPolicy</code></br>
  5560. <em>
  5561. <a href="#external-secrets.io/v1.ExternalSecretDeletionPolicy">
  5562. ExternalSecretDeletionPolicy
  5563. </a>
  5564. </em>
  5565. </td>
  5566. <td>
  5567. <em>(Optional)</em>
  5568. <p>DeletionPolicy defines rules on how to delete the resulting Secret.
  5569. Defaults to &ldquo;Retain&rdquo;</p>
  5570. </td>
  5571. </tr>
  5572. <tr>
  5573. <td>
  5574. <code>template</code></br>
  5575. <em>
  5576. <a href="#external-secrets.io/v1.ExternalSecretTemplate">
  5577. ExternalSecretTemplate
  5578. </a>
  5579. </em>
  5580. </td>
  5581. <td>
  5582. <em>(Optional)</em>
  5583. <p>Template defines a blueprint for the created Secret resource.</p>
  5584. </td>
  5585. </tr>
  5586. <tr>
  5587. <td>
  5588. <code>immutable</code></br>
  5589. <em>
  5590. bool
  5591. </em>
  5592. </td>
  5593. <td>
  5594. <em>(Optional)</em>
  5595. <p>Immutable defines if the final secret will be immutable</p>
  5596. </td>
  5597. </tr>
  5598. </tbody>
  5599. </table>
  5600. <h3 id="external-secrets.io/v1.ExternalSecretTemplate">ExternalSecretTemplate
  5601. </h3>
  5602. <p>
  5603. (<em>Appears on:</em>
  5604. <a href="#external-secrets.io/v1.ExternalSecretTarget">ExternalSecretTarget</a>)
  5605. </p>
  5606. <p>
  5607. <p>ExternalSecretTemplate defines a blueprint for the created Secret resource.
  5608. we can not use native corev1.Secret, it will have empty ObjectMeta values: <a href="https://github.com/kubernetes-sigs/controller-tools/issues/448">https://github.com/kubernetes-sigs/controller-tools/issues/448</a></p>
  5609. </p>
  5610. <table>
  5611. <thead>
  5612. <tr>
  5613. <th>Field</th>
  5614. <th>Description</th>
  5615. </tr>
  5616. </thead>
  5617. <tbody>
  5618. <tr>
  5619. <td>
  5620. <code>type</code></br>
  5621. <em>
  5622. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#secrettype-v1-core">
  5623. Kubernetes core/v1.SecretType
  5624. </a>
  5625. </em>
  5626. </td>
  5627. <td>
  5628. <em>(Optional)</em>
  5629. </td>
  5630. </tr>
  5631. <tr>
  5632. <td>
  5633. <code>engineVersion</code></br>
  5634. <em>
  5635. <a href="#external-secrets.io/v1.TemplateEngineVersion">
  5636. TemplateEngineVersion
  5637. </a>
  5638. </em>
  5639. </td>
  5640. <td>
  5641. <p>EngineVersion specifies the template engine version
  5642. that should be used to compile/execute the
  5643. template specified in .data and .templateFrom[].</p>
  5644. </td>
  5645. </tr>
  5646. <tr>
  5647. <td>
  5648. <code>metadata</code></br>
  5649. <em>
  5650. <a href="#external-secrets.io/v1.ExternalSecretTemplateMetadata">
  5651. ExternalSecretTemplateMetadata
  5652. </a>
  5653. </em>
  5654. </td>
  5655. <td>
  5656. <em>(Optional)</em>
  5657. </td>
  5658. </tr>
  5659. <tr>
  5660. <td>
  5661. <code>mergePolicy</code></br>
  5662. <em>
  5663. <a href="#external-secrets.io/v1.TemplateMergePolicy">
  5664. TemplateMergePolicy
  5665. </a>
  5666. </em>
  5667. </td>
  5668. <td>
  5669. </td>
  5670. </tr>
  5671. <tr>
  5672. <td>
  5673. <code>data</code></br>
  5674. <em>
  5675. map[string]string
  5676. </em>
  5677. </td>
  5678. <td>
  5679. <em>(Optional)</em>
  5680. </td>
  5681. </tr>
  5682. <tr>
  5683. <td>
  5684. <code>templateFrom</code></br>
  5685. <em>
  5686. <a href="#external-secrets.io/v1.TemplateFrom">
  5687. []TemplateFrom
  5688. </a>
  5689. </em>
  5690. </td>
  5691. <td>
  5692. <em>(Optional)</em>
  5693. </td>
  5694. </tr>
  5695. </tbody>
  5696. </table>
  5697. <h3 id="external-secrets.io/v1.ExternalSecretTemplateMetadata">ExternalSecretTemplateMetadata
  5698. </h3>
  5699. <p>
  5700. (<em>Appears on:</em>
  5701. <a href="#external-secrets.io/v1.ExternalSecretTemplate">ExternalSecretTemplate</a>)
  5702. </p>
  5703. <p>
  5704. <p>ExternalSecretTemplateMetadata defines metadata fields for the Secret blueprint.</p>
  5705. </p>
  5706. <table>
  5707. <thead>
  5708. <tr>
  5709. <th>Field</th>
  5710. <th>Description</th>
  5711. </tr>
  5712. </thead>
  5713. <tbody>
  5714. <tr>
  5715. <td>
  5716. <code>annotations</code></br>
  5717. <em>
  5718. map[string]string
  5719. </em>
  5720. </td>
  5721. <td>
  5722. <em>(Optional)</em>
  5723. </td>
  5724. </tr>
  5725. <tr>
  5726. <td>
  5727. <code>labels</code></br>
  5728. <em>
  5729. map[string]string
  5730. </em>
  5731. </td>
  5732. <td>
  5733. <em>(Optional)</em>
  5734. </td>
  5735. </tr>
  5736. </tbody>
  5737. </table>
  5738. <h3 id="external-secrets.io/v1.ExternalSecretValidator">ExternalSecretValidator
  5739. </h3>
  5740. <p>
  5741. </p>
  5742. <h3 id="external-secrets.io/v1.FakeProvider">FakeProvider
  5743. </h3>
  5744. <p>
  5745. (<em>Appears on:</em>
  5746. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  5747. </p>
  5748. <p>
  5749. <p>FakeProvider configures a fake provider that returns static values.</p>
  5750. </p>
  5751. <table>
  5752. <thead>
  5753. <tr>
  5754. <th>Field</th>
  5755. <th>Description</th>
  5756. </tr>
  5757. </thead>
  5758. <tbody>
  5759. <tr>
  5760. <td>
  5761. <code>data</code></br>
  5762. <em>
  5763. <a href="#external-secrets.io/v1.FakeProviderData">
  5764. []FakeProviderData
  5765. </a>
  5766. </em>
  5767. </td>
  5768. <td>
  5769. </td>
  5770. </tr>
  5771. </tbody>
  5772. </table>
  5773. <h3 id="external-secrets.io/v1.FakeProviderData">FakeProviderData
  5774. </h3>
  5775. <p>
  5776. (<em>Appears on:</em>
  5777. <a href="#external-secrets.io/v1.FakeProvider">FakeProvider</a>)
  5778. </p>
  5779. <p>
  5780. </p>
  5781. <table>
  5782. <thead>
  5783. <tr>
  5784. <th>Field</th>
  5785. <th>Description</th>
  5786. </tr>
  5787. </thead>
  5788. <tbody>
  5789. <tr>
  5790. <td>
  5791. <code>key</code></br>
  5792. <em>
  5793. string
  5794. </em>
  5795. </td>
  5796. <td>
  5797. </td>
  5798. </tr>
  5799. <tr>
  5800. <td>
  5801. <code>value</code></br>
  5802. <em>
  5803. string
  5804. </em>
  5805. </td>
  5806. <td>
  5807. </td>
  5808. </tr>
  5809. <tr>
  5810. <td>
  5811. <code>version</code></br>
  5812. <em>
  5813. string
  5814. </em>
  5815. </td>
  5816. <td>
  5817. </td>
  5818. </tr>
  5819. </tbody>
  5820. </table>
  5821. <h3 id="external-secrets.io/v1.FindName">FindName
  5822. </h3>
  5823. <p>
  5824. (<em>Appears on:</em>
  5825. <a href="#external-secrets.io/v1.ExternalSecretFind">ExternalSecretFind</a>)
  5826. </p>
  5827. <p>
  5828. </p>
  5829. <table>
  5830. <thead>
  5831. <tr>
  5832. <th>Field</th>
  5833. <th>Description</th>
  5834. </tr>
  5835. </thead>
  5836. <tbody>
  5837. <tr>
  5838. <td>
  5839. <code>regexp</code></br>
  5840. <em>
  5841. string
  5842. </em>
  5843. </td>
  5844. <td>
  5845. <em>(Optional)</em>
  5846. <p>Finds secrets base</p>
  5847. </td>
  5848. </tr>
  5849. </tbody>
  5850. </table>
  5851. <h3 id="external-secrets.io/v1.FortanixProvider">FortanixProvider
  5852. </h3>
  5853. <p>
  5854. (<em>Appears on:</em>
  5855. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  5856. </p>
  5857. <p>
  5858. </p>
  5859. <table>
  5860. <thead>
  5861. <tr>
  5862. <th>Field</th>
  5863. <th>Description</th>
  5864. </tr>
  5865. </thead>
  5866. <tbody>
  5867. <tr>
  5868. <td>
  5869. <code>apiUrl</code></br>
  5870. <em>
  5871. string
  5872. </em>
  5873. </td>
  5874. <td>
  5875. <p>APIURL is the URL of SDKMS API. Defaults to <code>sdkms.fortanix.com</code>.</p>
  5876. </td>
  5877. </tr>
  5878. <tr>
  5879. <td>
  5880. <code>apiKey</code></br>
  5881. <em>
  5882. <a href="#external-secrets.io/v1.FortanixProviderSecretRef">
  5883. FortanixProviderSecretRef
  5884. </a>
  5885. </em>
  5886. </td>
  5887. <td>
  5888. <p>APIKey is the API token to access SDKMS Applications.</p>
  5889. </td>
  5890. </tr>
  5891. </tbody>
  5892. </table>
  5893. <h3 id="external-secrets.io/v1.FortanixProviderSecretRef">FortanixProviderSecretRef
  5894. </h3>
  5895. <p>
  5896. (<em>Appears on:</em>
  5897. <a href="#external-secrets.io/v1.FortanixProvider">FortanixProvider</a>)
  5898. </p>
  5899. <p>
  5900. </p>
  5901. <table>
  5902. <thead>
  5903. <tr>
  5904. <th>Field</th>
  5905. <th>Description</th>
  5906. </tr>
  5907. </thead>
  5908. <tbody>
  5909. <tr>
  5910. <td>
  5911. <code>secretRef</code></br>
  5912. <em>
  5913. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  5914. External Secrets meta/v1.SecretKeySelector
  5915. </a>
  5916. </em>
  5917. </td>
  5918. <td>
  5919. <p>SecretRef is a reference to a secret containing the SDKMS API Key.</p>
  5920. </td>
  5921. </tr>
  5922. </tbody>
  5923. </table>
  5924. <h3 id="external-secrets.io/v1.GCPSMAuth">GCPSMAuth
  5925. </h3>
  5926. <p>
  5927. (<em>Appears on:</em>
  5928. <a href="#external-secrets.io/v1.GCPSMProvider">GCPSMProvider</a>)
  5929. </p>
  5930. <p>
  5931. </p>
  5932. <table>
  5933. <thead>
  5934. <tr>
  5935. <th>Field</th>
  5936. <th>Description</th>
  5937. </tr>
  5938. </thead>
  5939. <tbody>
  5940. <tr>
  5941. <td>
  5942. <code>secretRef</code></br>
  5943. <em>
  5944. <a href="#external-secrets.io/v1.GCPSMAuthSecretRef">
  5945. GCPSMAuthSecretRef
  5946. </a>
  5947. </em>
  5948. </td>
  5949. <td>
  5950. <em>(Optional)</em>
  5951. </td>
  5952. </tr>
  5953. <tr>
  5954. <td>
  5955. <code>workloadIdentity</code></br>
  5956. <em>
  5957. <a href="#external-secrets.io/v1.GCPWorkloadIdentity">
  5958. GCPWorkloadIdentity
  5959. </a>
  5960. </em>
  5961. </td>
  5962. <td>
  5963. <em>(Optional)</em>
  5964. </td>
  5965. </tr>
  5966. </tbody>
  5967. </table>
  5968. <h3 id="external-secrets.io/v1.GCPSMAuthSecretRef">GCPSMAuthSecretRef
  5969. </h3>
  5970. <p>
  5971. (<em>Appears on:</em>
  5972. <a href="#external-secrets.io/v1.GCPSMAuth">GCPSMAuth</a>)
  5973. </p>
  5974. <p>
  5975. </p>
  5976. <table>
  5977. <thead>
  5978. <tr>
  5979. <th>Field</th>
  5980. <th>Description</th>
  5981. </tr>
  5982. </thead>
  5983. <tbody>
  5984. <tr>
  5985. <td>
  5986. <code>secretAccessKeySecretRef</code></br>
  5987. <em>
  5988. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  5989. External Secrets meta/v1.SecretKeySelector
  5990. </a>
  5991. </em>
  5992. </td>
  5993. <td>
  5994. <em>(Optional)</em>
  5995. <p>The SecretAccessKey is used for authentication</p>
  5996. </td>
  5997. </tr>
  5998. </tbody>
  5999. </table>
  6000. <h3 id="external-secrets.io/v1.GCPSMProvider">GCPSMProvider
  6001. </h3>
  6002. <p>
  6003. (<em>Appears on:</em>
  6004. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  6005. </p>
  6006. <p>
  6007. <p>GCPSMProvider Configures a store to sync secrets using the GCP Secret Manager provider.</p>
  6008. </p>
  6009. <table>
  6010. <thead>
  6011. <tr>
  6012. <th>Field</th>
  6013. <th>Description</th>
  6014. </tr>
  6015. </thead>
  6016. <tbody>
  6017. <tr>
  6018. <td>
  6019. <code>auth</code></br>
  6020. <em>
  6021. <a href="#external-secrets.io/v1.GCPSMAuth">
  6022. GCPSMAuth
  6023. </a>
  6024. </em>
  6025. </td>
  6026. <td>
  6027. <em>(Optional)</em>
  6028. <p>Auth defines the information necessary to authenticate against GCP</p>
  6029. </td>
  6030. </tr>
  6031. <tr>
  6032. <td>
  6033. <code>projectID</code></br>
  6034. <em>
  6035. string
  6036. </em>
  6037. </td>
  6038. <td>
  6039. <p>ProjectID project where secret is located</p>
  6040. </td>
  6041. </tr>
  6042. <tr>
  6043. <td>
  6044. <code>location</code></br>
  6045. <em>
  6046. string
  6047. </em>
  6048. </td>
  6049. <td>
  6050. <p>Location optionally defines a location for a secret</p>
  6051. </td>
  6052. </tr>
  6053. </tbody>
  6054. </table>
  6055. <h3 id="external-secrets.io/v1.GCPWorkloadIdentity">GCPWorkloadIdentity
  6056. </h3>
  6057. <p>
  6058. (<em>Appears on:</em>
  6059. <a href="#external-secrets.io/v1.GCPSMAuth">GCPSMAuth</a>)
  6060. </p>
  6061. <p>
  6062. </p>
  6063. <table>
  6064. <thead>
  6065. <tr>
  6066. <th>Field</th>
  6067. <th>Description</th>
  6068. </tr>
  6069. </thead>
  6070. <tbody>
  6071. <tr>
  6072. <td>
  6073. <code>serviceAccountRef</code></br>
  6074. <em>
  6075. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  6076. External Secrets meta/v1.ServiceAccountSelector
  6077. </a>
  6078. </em>
  6079. </td>
  6080. <td>
  6081. </td>
  6082. </tr>
  6083. <tr>
  6084. <td>
  6085. <code>clusterLocation</code></br>
  6086. <em>
  6087. string
  6088. </em>
  6089. </td>
  6090. <td>
  6091. <em>(Optional)</em>
  6092. <p>ClusterLocation is the location of the cluster
  6093. If not specified, it fetches information from the metadata server</p>
  6094. </td>
  6095. </tr>
  6096. <tr>
  6097. <td>
  6098. <code>clusterName</code></br>
  6099. <em>
  6100. string
  6101. </em>
  6102. </td>
  6103. <td>
  6104. <em>(Optional)</em>
  6105. <p>ClusterName is the name of the cluster
  6106. If not specified, it fetches information from the metadata server</p>
  6107. </td>
  6108. </tr>
  6109. <tr>
  6110. <td>
  6111. <code>clusterProjectID</code></br>
  6112. <em>
  6113. string
  6114. </em>
  6115. </td>
  6116. <td>
  6117. <em>(Optional)</em>
  6118. <p>ClusterProjectID is the project ID of the cluster
  6119. If not specified, it fetches information from the metadata server</p>
  6120. </td>
  6121. </tr>
  6122. </tbody>
  6123. </table>
  6124. <h3 id="external-secrets.io/v1.GcpIamAuthCredentials">GcpIamAuthCredentials
  6125. </h3>
  6126. <p>
  6127. (<em>Appears on:</em>
  6128. <a href="#external-secrets.io/v1.InfisicalAuth">InfisicalAuth</a>)
  6129. </p>
  6130. <p>
  6131. </p>
  6132. <table>
  6133. <thead>
  6134. <tr>
  6135. <th>Field</th>
  6136. <th>Description</th>
  6137. </tr>
  6138. </thead>
  6139. <tbody>
  6140. <tr>
  6141. <td>
  6142. <code>identityId</code></br>
  6143. <em>
  6144. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  6145. External Secrets meta/v1.SecretKeySelector
  6146. </a>
  6147. </em>
  6148. </td>
  6149. <td>
  6150. </td>
  6151. </tr>
  6152. <tr>
  6153. <td>
  6154. <code>serviceAccountKeyFilePath</code></br>
  6155. <em>
  6156. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  6157. External Secrets meta/v1.SecretKeySelector
  6158. </a>
  6159. </em>
  6160. </td>
  6161. <td>
  6162. </td>
  6163. </tr>
  6164. </tbody>
  6165. </table>
  6166. <h3 id="external-secrets.io/v1.GcpIdTokenAuthCredentials">GcpIdTokenAuthCredentials
  6167. </h3>
  6168. <p>
  6169. (<em>Appears on:</em>
  6170. <a href="#external-secrets.io/v1.InfisicalAuth">InfisicalAuth</a>)
  6171. </p>
  6172. <p>
  6173. </p>
  6174. <table>
  6175. <thead>
  6176. <tr>
  6177. <th>Field</th>
  6178. <th>Description</th>
  6179. </tr>
  6180. </thead>
  6181. <tbody>
  6182. <tr>
  6183. <td>
  6184. <code>identityId</code></br>
  6185. <em>
  6186. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  6187. External Secrets meta/v1.SecretKeySelector
  6188. </a>
  6189. </em>
  6190. </td>
  6191. <td>
  6192. </td>
  6193. </tr>
  6194. </tbody>
  6195. </table>
  6196. <h3 id="external-secrets.io/v1.GeneratorRef">GeneratorRef
  6197. </h3>
  6198. <p>
  6199. (<em>Appears on:</em>
  6200. <a href="#external-secrets.io/v1.StoreGeneratorSourceRef">StoreGeneratorSourceRef</a>,
  6201. <a href="#external-secrets.io/v1.StoreSourceRef">StoreSourceRef</a>)
  6202. </p>
  6203. <p>
  6204. <p>GeneratorRef points to a generator custom resource.</p>
  6205. </p>
  6206. <table>
  6207. <thead>
  6208. <tr>
  6209. <th>Field</th>
  6210. <th>Description</th>
  6211. </tr>
  6212. </thead>
  6213. <tbody>
  6214. <tr>
  6215. <td>
  6216. <code>apiVersion</code></br>
  6217. <em>
  6218. string
  6219. </em>
  6220. </td>
  6221. <td>
  6222. <p>Specify the apiVersion of the generator resource</p>
  6223. </td>
  6224. </tr>
  6225. <tr>
  6226. <td>
  6227. <code>kind</code></br>
  6228. <em>
  6229. string
  6230. </em>
  6231. </td>
  6232. <td>
  6233. <p>Specify the Kind of the generator resource</p>
  6234. </td>
  6235. </tr>
  6236. <tr>
  6237. <td>
  6238. <code>name</code></br>
  6239. <em>
  6240. string
  6241. </em>
  6242. </td>
  6243. <td>
  6244. <p>Specify the name of the generator resource</p>
  6245. </td>
  6246. </tr>
  6247. </tbody>
  6248. </table>
  6249. <h3 id="external-secrets.io/v1.GenericStore">GenericStore
  6250. </h3>
  6251. <p>
  6252. <p>GenericStore is a common interface for interacting with ClusterSecretStore
  6253. or a namespaced SecretStore.</p>
  6254. </p>
  6255. <h3 id="external-secrets.io/v1.GenericStoreValidator">GenericStoreValidator
  6256. </h3>
  6257. <p>
  6258. </p>
  6259. <h3 id="external-secrets.io/v1.GithubAppAuth">GithubAppAuth
  6260. </h3>
  6261. <p>
  6262. (<em>Appears on:</em>
  6263. <a href="#external-secrets.io/v1.GithubProvider">GithubProvider</a>)
  6264. </p>
  6265. <p>
  6266. </p>
  6267. <table>
  6268. <thead>
  6269. <tr>
  6270. <th>Field</th>
  6271. <th>Description</th>
  6272. </tr>
  6273. </thead>
  6274. <tbody>
  6275. <tr>
  6276. <td>
  6277. <code>privateKey</code></br>
  6278. <em>
  6279. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  6280. External Secrets meta/v1.SecretKeySelector
  6281. </a>
  6282. </em>
  6283. </td>
  6284. <td>
  6285. </td>
  6286. </tr>
  6287. </tbody>
  6288. </table>
  6289. <h3 id="external-secrets.io/v1.GithubProvider">GithubProvider
  6290. </h3>
  6291. <p>
  6292. (<em>Appears on:</em>
  6293. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  6294. </p>
  6295. <p>
  6296. <p>Configures a store to push secrets to Github Actions.</p>
  6297. </p>
  6298. <table>
  6299. <thead>
  6300. <tr>
  6301. <th>Field</th>
  6302. <th>Description</th>
  6303. </tr>
  6304. </thead>
  6305. <tbody>
  6306. <tr>
  6307. <td>
  6308. <code>url</code></br>
  6309. <em>
  6310. string
  6311. </em>
  6312. </td>
  6313. <td>
  6314. <p>URL configures the Github instance URL. Defaults to <a href="https://github.com/">https://github.com/</a>.</p>
  6315. </td>
  6316. </tr>
  6317. <tr>
  6318. <td>
  6319. <code>uploadURL</code></br>
  6320. <em>
  6321. string
  6322. </em>
  6323. </td>
  6324. <td>
  6325. <em>(Optional)</em>
  6326. <p>Upload URL for enterprise instances. Default to URL.</p>
  6327. </td>
  6328. </tr>
  6329. <tr>
  6330. <td>
  6331. <code>auth</code></br>
  6332. <em>
  6333. <a href="#external-secrets.io/v1.GithubAppAuth">
  6334. GithubAppAuth
  6335. </a>
  6336. </em>
  6337. </td>
  6338. <td>
  6339. <p>auth configures how secret-manager authenticates with a Github instance.</p>
  6340. </td>
  6341. </tr>
  6342. <tr>
  6343. <td>
  6344. <code>appID</code></br>
  6345. <em>
  6346. int64
  6347. </em>
  6348. </td>
  6349. <td>
  6350. <p>appID specifies the Github APP that will be used to authenticate the client</p>
  6351. </td>
  6352. </tr>
  6353. <tr>
  6354. <td>
  6355. <code>installationID</code></br>
  6356. <em>
  6357. int64
  6358. </em>
  6359. </td>
  6360. <td>
  6361. <p>installationID specifies the Github APP installation that will be used to authenticate the client</p>
  6362. </td>
  6363. </tr>
  6364. <tr>
  6365. <td>
  6366. <code>organization</code></br>
  6367. <em>
  6368. string
  6369. </em>
  6370. </td>
  6371. <td>
  6372. <p>organization will be used to fetch secrets from the Github organization</p>
  6373. </td>
  6374. </tr>
  6375. <tr>
  6376. <td>
  6377. <code>repository</code></br>
  6378. <em>
  6379. string
  6380. </em>
  6381. </td>
  6382. <td>
  6383. <em>(Optional)</em>
  6384. <p>repository will be used to fetch secrets from the Github repository within an organization</p>
  6385. </td>
  6386. </tr>
  6387. <tr>
  6388. <td>
  6389. <code>environment</code></br>
  6390. <em>
  6391. string
  6392. </em>
  6393. </td>
  6394. <td>
  6395. <em>(Optional)</em>
  6396. <p>environment will be used to fetch secrets from a particular environment within a github repository</p>
  6397. </td>
  6398. </tr>
  6399. </tbody>
  6400. </table>
  6401. <h3 id="external-secrets.io/v1.GitlabAuth">GitlabAuth
  6402. </h3>
  6403. <p>
  6404. (<em>Appears on:</em>
  6405. <a href="#external-secrets.io/v1.GitlabProvider">GitlabProvider</a>)
  6406. </p>
  6407. <p>
  6408. </p>
  6409. <table>
  6410. <thead>
  6411. <tr>
  6412. <th>Field</th>
  6413. <th>Description</th>
  6414. </tr>
  6415. </thead>
  6416. <tbody>
  6417. <tr>
  6418. <td>
  6419. <code>SecretRef</code></br>
  6420. <em>
  6421. <a href="#external-secrets.io/v1.GitlabSecretRef">
  6422. GitlabSecretRef
  6423. </a>
  6424. </em>
  6425. </td>
  6426. <td>
  6427. </td>
  6428. </tr>
  6429. </tbody>
  6430. </table>
  6431. <h3 id="external-secrets.io/v1.GitlabProvider">GitlabProvider
  6432. </h3>
  6433. <p>
  6434. (<em>Appears on:</em>
  6435. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  6436. </p>
  6437. <p>
  6438. <p>Configures a store to sync secrets with a GitLab instance.</p>
  6439. </p>
  6440. <table>
  6441. <thead>
  6442. <tr>
  6443. <th>Field</th>
  6444. <th>Description</th>
  6445. </tr>
  6446. </thead>
  6447. <tbody>
  6448. <tr>
  6449. <td>
  6450. <code>url</code></br>
  6451. <em>
  6452. string
  6453. </em>
  6454. </td>
  6455. <td>
  6456. <p>URL configures the GitLab instance URL. Defaults to <a href="https://gitlab.com/">https://gitlab.com/</a>.</p>
  6457. </td>
  6458. </tr>
  6459. <tr>
  6460. <td>
  6461. <code>auth</code></br>
  6462. <em>
  6463. <a href="#external-secrets.io/v1.GitlabAuth">
  6464. GitlabAuth
  6465. </a>
  6466. </em>
  6467. </td>
  6468. <td>
  6469. <p>Auth configures how secret-manager authenticates with a GitLab instance.</p>
  6470. </td>
  6471. </tr>
  6472. <tr>
  6473. <td>
  6474. <code>projectID</code></br>
  6475. <em>
  6476. string
  6477. </em>
  6478. </td>
  6479. <td>
  6480. <p>ProjectID specifies a project where secrets are located.</p>
  6481. </td>
  6482. </tr>
  6483. <tr>
  6484. <td>
  6485. <code>inheritFromGroups</code></br>
  6486. <em>
  6487. bool
  6488. </em>
  6489. </td>
  6490. <td>
  6491. <p>InheritFromGroups specifies whether parent groups should be discovered and checked for secrets.</p>
  6492. </td>
  6493. </tr>
  6494. <tr>
  6495. <td>
  6496. <code>groupIDs</code></br>
  6497. <em>
  6498. []string
  6499. </em>
  6500. </td>
  6501. <td>
  6502. <p>GroupIDs specify, which gitlab groups to pull secrets from. Group secrets are read from left to right followed by the project variables.</p>
  6503. </td>
  6504. </tr>
  6505. <tr>
  6506. <td>
  6507. <code>environment</code></br>
  6508. <em>
  6509. string
  6510. </em>
  6511. </td>
  6512. <td>
  6513. <p>Environment environment_scope of gitlab CI/CD variables (Please see <a href="https://docs.gitlab.com/ee/ci/environments/#create-a-static-environment">https://docs.gitlab.com/ee/ci/environments/#create-a-static-environment</a> on how to create environments)</p>
  6514. </td>
  6515. </tr>
  6516. <tr>
  6517. <td>
  6518. <code>caBundle</code></br>
  6519. <em>
  6520. []byte
  6521. </em>
  6522. </td>
  6523. <td>
  6524. <em>(Optional)</em>
  6525. <p>Base64 encoded certificate for the GitLab server sdk. The sdk MUST run with HTTPS to make sure no MITM attack
  6526. can be performed.</p>
  6527. </td>
  6528. </tr>
  6529. <tr>
  6530. <td>
  6531. <code>caProvider</code></br>
  6532. <em>
  6533. <a href="#external-secrets.io/v1.CAProvider">
  6534. CAProvider
  6535. </a>
  6536. </em>
  6537. </td>
  6538. <td>
  6539. <em>(Optional)</em>
  6540. <p>see: <a href="https://external-secrets.io/latest/spec/#external-secrets.io/v1alpha1.CAProvider">https://external-secrets.io/latest/spec/#external-secrets.io/v1alpha1.CAProvider</a></p>
  6541. </td>
  6542. </tr>
  6543. </tbody>
  6544. </table>
  6545. <h3 id="external-secrets.io/v1.GitlabSecretRef">GitlabSecretRef
  6546. </h3>
  6547. <p>
  6548. (<em>Appears on:</em>
  6549. <a href="#external-secrets.io/v1.GitlabAuth">GitlabAuth</a>)
  6550. </p>
  6551. <p>
  6552. </p>
  6553. <table>
  6554. <thead>
  6555. <tr>
  6556. <th>Field</th>
  6557. <th>Description</th>
  6558. </tr>
  6559. </thead>
  6560. <tbody>
  6561. <tr>
  6562. <td>
  6563. <code>accessToken</code></br>
  6564. <em>
  6565. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  6566. External Secrets meta/v1.SecretKeySelector
  6567. </a>
  6568. </em>
  6569. </td>
  6570. <td>
  6571. <p>AccessToken is used for authentication.</p>
  6572. </td>
  6573. </tr>
  6574. </tbody>
  6575. </table>
  6576. <h3 id="external-secrets.io/v1.IBMAuth">IBMAuth
  6577. </h3>
  6578. <p>
  6579. (<em>Appears on:</em>
  6580. <a href="#external-secrets.io/v1.IBMProvider">IBMProvider</a>)
  6581. </p>
  6582. <p>
  6583. </p>
  6584. <table>
  6585. <thead>
  6586. <tr>
  6587. <th>Field</th>
  6588. <th>Description</th>
  6589. </tr>
  6590. </thead>
  6591. <tbody>
  6592. <tr>
  6593. <td>
  6594. <code>secretRef</code></br>
  6595. <em>
  6596. <a href="#external-secrets.io/v1.IBMAuthSecretRef">
  6597. IBMAuthSecretRef
  6598. </a>
  6599. </em>
  6600. </td>
  6601. <td>
  6602. </td>
  6603. </tr>
  6604. <tr>
  6605. <td>
  6606. <code>containerAuth</code></br>
  6607. <em>
  6608. <a href="#external-secrets.io/v1.IBMAuthContainerAuth">
  6609. IBMAuthContainerAuth
  6610. </a>
  6611. </em>
  6612. </td>
  6613. <td>
  6614. </td>
  6615. </tr>
  6616. </tbody>
  6617. </table>
  6618. <h3 id="external-secrets.io/v1.IBMAuthContainerAuth">IBMAuthContainerAuth
  6619. </h3>
  6620. <p>
  6621. (<em>Appears on:</em>
  6622. <a href="#external-secrets.io/v1.IBMAuth">IBMAuth</a>)
  6623. </p>
  6624. <p>
  6625. <p>IBM Container-based auth with IAM Trusted Profile.</p>
  6626. </p>
  6627. <table>
  6628. <thead>
  6629. <tr>
  6630. <th>Field</th>
  6631. <th>Description</th>
  6632. </tr>
  6633. </thead>
  6634. <tbody>
  6635. <tr>
  6636. <td>
  6637. <code>profile</code></br>
  6638. <em>
  6639. string
  6640. </em>
  6641. </td>
  6642. <td>
  6643. <p>the IBM Trusted Profile</p>
  6644. </td>
  6645. </tr>
  6646. <tr>
  6647. <td>
  6648. <code>tokenLocation</code></br>
  6649. <em>
  6650. string
  6651. </em>
  6652. </td>
  6653. <td>
  6654. <p>Location the token is mounted on the pod</p>
  6655. </td>
  6656. </tr>
  6657. <tr>
  6658. <td>
  6659. <code>iamEndpoint</code></br>
  6660. <em>
  6661. string
  6662. </em>
  6663. </td>
  6664. <td>
  6665. </td>
  6666. </tr>
  6667. </tbody>
  6668. </table>
  6669. <h3 id="external-secrets.io/v1.IBMAuthSecretRef">IBMAuthSecretRef
  6670. </h3>
  6671. <p>
  6672. (<em>Appears on:</em>
  6673. <a href="#external-secrets.io/v1.IBMAuth">IBMAuth</a>)
  6674. </p>
  6675. <p>
  6676. </p>
  6677. <table>
  6678. <thead>
  6679. <tr>
  6680. <th>Field</th>
  6681. <th>Description</th>
  6682. </tr>
  6683. </thead>
  6684. <tbody>
  6685. <tr>
  6686. <td>
  6687. <code>secretApiKeySecretRef</code></br>
  6688. <em>
  6689. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  6690. External Secrets meta/v1.SecretKeySelector
  6691. </a>
  6692. </em>
  6693. </td>
  6694. <td>
  6695. <p>The SecretAccessKey is used for authentication</p>
  6696. </td>
  6697. </tr>
  6698. </tbody>
  6699. </table>
  6700. <h3 id="external-secrets.io/v1.IBMProvider">IBMProvider
  6701. </h3>
  6702. <p>
  6703. (<em>Appears on:</em>
  6704. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  6705. </p>
  6706. <p>
  6707. <p>Configures an store to sync secrets using a IBM Cloud Secrets Manager
  6708. backend.</p>
  6709. </p>
  6710. <table>
  6711. <thead>
  6712. <tr>
  6713. <th>Field</th>
  6714. <th>Description</th>
  6715. </tr>
  6716. </thead>
  6717. <tbody>
  6718. <tr>
  6719. <td>
  6720. <code>auth</code></br>
  6721. <em>
  6722. <a href="#external-secrets.io/v1.IBMAuth">
  6723. IBMAuth
  6724. </a>
  6725. </em>
  6726. </td>
  6727. <td>
  6728. <p>Auth configures how secret-manager authenticates with the IBM secrets manager.</p>
  6729. </td>
  6730. </tr>
  6731. <tr>
  6732. <td>
  6733. <code>serviceUrl</code></br>
  6734. <em>
  6735. string
  6736. </em>
  6737. </td>
  6738. <td>
  6739. <p>ServiceURL is the Endpoint URL that is specific to the Secrets Manager service instance</p>
  6740. </td>
  6741. </tr>
  6742. </tbody>
  6743. </table>
  6744. <h3 id="external-secrets.io/v1.InfisicalAuth">InfisicalAuth
  6745. </h3>
  6746. <p>
  6747. (<em>Appears on:</em>
  6748. <a href="#external-secrets.io/v1.InfisicalProvider">InfisicalProvider</a>)
  6749. </p>
  6750. <p>
  6751. </p>
  6752. <table>
  6753. <thead>
  6754. <tr>
  6755. <th>Field</th>
  6756. <th>Description</th>
  6757. </tr>
  6758. </thead>
  6759. <tbody>
  6760. <tr>
  6761. <td>
  6762. <code>universalAuthCredentials</code></br>
  6763. <em>
  6764. <a href="#external-secrets.io/v1.UniversalAuthCredentials">
  6765. UniversalAuthCredentials
  6766. </a>
  6767. </em>
  6768. </td>
  6769. <td>
  6770. <em>(Optional)</em>
  6771. </td>
  6772. </tr>
  6773. <tr>
  6774. <td>
  6775. <code>azureAuthCredentials</code></br>
  6776. <em>
  6777. <a href="#external-secrets.io/v1.AzureAuthCredentials">
  6778. AzureAuthCredentials
  6779. </a>
  6780. </em>
  6781. </td>
  6782. <td>
  6783. <em>(Optional)</em>
  6784. </td>
  6785. </tr>
  6786. <tr>
  6787. <td>
  6788. <code>gcpIdTokenAuthCredentials</code></br>
  6789. <em>
  6790. <a href="#external-secrets.io/v1.GcpIdTokenAuthCredentials">
  6791. GcpIdTokenAuthCredentials
  6792. </a>
  6793. </em>
  6794. </td>
  6795. <td>
  6796. <em>(Optional)</em>
  6797. </td>
  6798. </tr>
  6799. <tr>
  6800. <td>
  6801. <code>gcpIamAuthCredentials</code></br>
  6802. <em>
  6803. <a href="#external-secrets.io/v1.GcpIamAuthCredentials">
  6804. GcpIamAuthCredentials
  6805. </a>
  6806. </em>
  6807. </td>
  6808. <td>
  6809. <em>(Optional)</em>
  6810. </td>
  6811. </tr>
  6812. <tr>
  6813. <td>
  6814. <code>jwtAuthCredentials</code></br>
  6815. <em>
  6816. <a href="#external-secrets.io/v1.JwtAuthCredentials">
  6817. JwtAuthCredentials
  6818. </a>
  6819. </em>
  6820. </td>
  6821. <td>
  6822. <em>(Optional)</em>
  6823. </td>
  6824. </tr>
  6825. <tr>
  6826. <td>
  6827. <code>ldapAuthCredentials</code></br>
  6828. <em>
  6829. <a href="#external-secrets.io/v1.LdapAuthCredentials">
  6830. LdapAuthCredentials
  6831. </a>
  6832. </em>
  6833. </td>
  6834. <td>
  6835. <em>(Optional)</em>
  6836. </td>
  6837. </tr>
  6838. <tr>
  6839. <td>
  6840. <code>ociAuthCredentials</code></br>
  6841. <em>
  6842. <a href="#external-secrets.io/v1.OciAuthCredentials">
  6843. OciAuthCredentials
  6844. </a>
  6845. </em>
  6846. </td>
  6847. <td>
  6848. <em>(Optional)</em>
  6849. </td>
  6850. </tr>
  6851. </tbody>
  6852. </table>
  6853. <h3 id="external-secrets.io/v1.InfisicalProvider">InfisicalProvider
  6854. </h3>
  6855. <p>
  6856. (<em>Appears on:</em>
  6857. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  6858. </p>
  6859. <p>
  6860. <p>InfisicalProvider configures a store to sync secrets using the Infisical provider.</p>
  6861. </p>
  6862. <table>
  6863. <thead>
  6864. <tr>
  6865. <th>Field</th>
  6866. <th>Description</th>
  6867. </tr>
  6868. </thead>
  6869. <tbody>
  6870. <tr>
  6871. <td>
  6872. <code>auth</code></br>
  6873. <em>
  6874. <a href="#external-secrets.io/v1.InfisicalAuth">
  6875. InfisicalAuth
  6876. </a>
  6877. </em>
  6878. </td>
  6879. <td>
  6880. <p>Auth configures how the Operator authenticates with the Infisical API</p>
  6881. </td>
  6882. </tr>
  6883. <tr>
  6884. <td>
  6885. <code>secretsScope</code></br>
  6886. <em>
  6887. <a href="#external-secrets.io/v1.MachineIdentityScopeInWorkspace">
  6888. MachineIdentityScopeInWorkspace
  6889. </a>
  6890. </em>
  6891. </td>
  6892. <td>
  6893. <p>SecretsScope defines the scope of the secrets within the workspace</p>
  6894. </td>
  6895. </tr>
  6896. <tr>
  6897. <td>
  6898. <code>hostAPI</code></br>
  6899. <em>
  6900. string
  6901. </em>
  6902. </td>
  6903. <td>
  6904. <em>(Optional)</em>
  6905. <p>HostAPI specifies the base URL of the Infisical API. If not provided, it defaults to &ldquo;<a href="https://app.infisical.com/api&quot;">https://app.infisical.com/api&rdquo;</a>.</p>
  6906. </td>
  6907. </tr>
  6908. </tbody>
  6909. </table>
  6910. <h3 id="external-secrets.io/v1.IntegrationInfo">IntegrationInfo
  6911. </h3>
  6912. <p>
  6913. (<em>Appears on:</em>
  6914. <a href="#external-secrets.io/v1.OnePasswordSDKProvider">OnePasswordSDKProvider</a>)
  6915. </p>
  6916. <p>
  6917. <p>IntegrationInfo specifies the name and version of the integration built using the 1Password Go SDK.</p>
  6918. </p>
  6919. <table>
  6920. <thead>
  6921. <tr>
  6922. <th>Field</th>
  6923. <th>Description</th>
  6924. </tr>
  6925. </thead>
  6926. <tbody>
  6927. <tr>
  6928. <td>
  6929. <code>name</code></br>
  6930. <em>
  6931. string
  6932. </em>
  6933. </td>
  6934. <td>
  6935. <p>Name defaults to &ldquo;1Password SDK&rdquo;.</p>
  6936. </td>
  6937. </tr>
  6938. <tr>
  6939. <td>
  6940. <code>version</code></br>
  6941. <em>
  6942. string
  6943. </em>
  6944. </td>
  6945. <td>
  6946. <p>Version defaults to &ldquo;v1.0.0&rdquo;.</p>
  6947. </td>
  6948. </tr>
  6949. </tbody>
  6950. </table>
  6951. <h3 id="external-secrets.io/v1.JwtAuthCredentials">JwtAuthCredentials
  6952. </h3>
  6953. <p>
  6954. (<em>Appears on:</em>
  6955. <a href="#external-secrets.io/v1.InfisicalAuth">InfisicalAuth</a>)
  6956. </p>
  6957. <p>
  6958. </p>
  6959. <table>
  6960. <thead>
  6961. <tr>
  6962. <th>Field</th>
  6963. <th>Description</th>
  6964. </tr>
  6965. </thead>
  6966. <tbody>
  6967. <tr>
  6968. <td>
  6969. <code>identityId</code></br>
  6970. <em>
  6971. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  6972. External Secrets meta/v1.SecretKeySelector
  6973. </a>
  6974. </em>
  6975. </td>
  6976. <td>
  6977. </td>
  6978. </tr>
  6979. <tr>
  6980. <td>
  6981. <code>jwt</code></br>
  6982. <em>
  6983. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  6984. External Secrets meta/v1.SecretKeySelector
  6985. </a>
  6986. </em>
  6987. </td>
  6988. <td>
  6989. </td>
  6990. </tr>
  6991. </tbody>
  6992. </table>
  6993. <h3 id="external-secrets.io/v1.KeeperSecurityProvider">KeeperSecurityProvider
  6994. </h3>
  6995. <p>
  6996. (<em>Appears on:</em>
  6997. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  6998. </p>
  6999. <p>
  7000. <p>KeeperSecurityProvider Configures a store to sync secrets using Keeper Security.</p>
  7001. </p>
  7002. <table>
  7003. <thead>
  7004. <tr>
  7005. <th>Field</th>
  7006. <th>Description</th>
  7007. </tr>
  7008. </thead>
  7009. <tbody>
  7010. <tr>
  7011. <td>
  7012. <code>authRef</code></br>
  7013. <em>
  7014. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7015. External Secrets meta/v1.SecretKeySelector
  7016. </a>
  7017. </em>
  7018. </td>
  7019. <td>
  7020. </td>
  7021. </tr>
  7022. <tr>
  7023. <td>
  7024. <code>folderID</code></br>
  7025. <em>
  7026. string
  7027. </em>
  7028. </td>
  7029. <td>
  7030. </td>
  7031. </tr>
  7032. </tbody>
  7033. </table>
  7034. <h3 id="external-secrets.io/v1.KubernetesAuth">KubernetesAuth
  7035. </h3>
  7036. <p>
  7037. (<em>Appears on:</em>
  7038. <a href="#external-secrets.io/v1.KubernetesProvider">KubernetesProvider</a>)
  7039. </p>
  7040. <p>
  7041. </p>
  7042. <table>
  7043. <thead>
  7044. <tr>
  7045. <th>Field</th>
  7046. <th>Description</th>
  7047. </tr>
  7048. </thead>
  7049. <tbody>
  7050. <tr>
  7051. <td>
  7052. <code>cert</code></br>
  7053. <em>
  7054. <a href="#external-secrets.io/v1.CertAuth">
  7055. CertAuth
  7056. </a>
  7057. </em>
  7058. </td>
  7059. <td>
  7060. <em>(Optional)</em>
  7061. <p>has both clientCert and clientKey as secretKeySelector</p>
  7062. </td>
  7063. </tr>
  7064. <tr>
  7065. <td>
  7066. <code>token</code></br>
  7067. <em>
  7068. <a href="#external-secrets.io/v1.TokenAuth">
  7069. TokenAuth
  7070. </a>
  7071. </em>
  7072. </td>
  7073. <td>
  7074. <em>(Optional)</em>
  7075. <p>use static token to authenticate with</p>
  7076. </td>
  7077. </tr>
  7078. <tr>
  7079. <td>
  7080. <code>serviceAccount</code></br>
  7081. <em>
  7082. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  7083. External Secrets meta/v1.ServiceAccountSelector
  7084. </a>
  7085. </em>
  7086. </td>
  7087. <td>
  7088. <em>(Optional)</em>
  7089. <p>points to a service account that should be used for authentication</p>
  7090. </td>
  7091. </tr>
  7092. </tbody>
  7093. </table>
  7094. <h3 id="external-secrets.io/v1.KubernetesProvider">KubernetesProvider
  7095. </h3>
  7096. <p>
  7097. (<em>Appears on:</em>
  7098. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  7099. </p>
  7100. <p>
  7101. <p>Configures a store to sync secrets with a Kubernetes instance.</p>
  7102. </p>
  7103. <table>
  7104. <thead>
  7105. <tr>
  7106. <th>Field</th>
  7107. <th>Description</th>
  7108. </tr>
  7109. </thead>
  7110. <tbody>
  7111. <tr>
  7112. <td>
  7113. <code>server</code></br>
  7114. <em>
  7115. <a href="#external-secrets.io/v1.KubernetesServer">
  7116. KubernetesServer
  7117. </a>
  7118. </em>
  7119. </td>
  7120. <td>
  7121. <em>(Optional)</em>
  7122. <p>configures the Kubernetes server Address.</p>
  7123. </td>
  7124. </tr>
  7125. <tr>
  7126. <td>
  7127. <code>auth</code></br>
  7128. <em>
  7129. <a href="#external-secrets.io/v1.KubernetesAuth">
  7130. KubernetesAuth
  7131. </a>
  7132. </em>
  7133. </td>
  7134. <td>
  7135. <em>(Optional)</em>
  7136. <p>Auth configures how secret-manager authenticates with a Kubernetes instance.</p>
  7137. </td>
  7138. </tr>
  7139. <tr>
  7140. <td>
  7141. <code>authRef</code></br>
  7142. <em>
  7143. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7144. External Secrets meta/v1.SecretKeySelector
  7145. </a>
  7146. </em>
  7147. </td>
  7148. <td>
  7149. <em>(Optional)</em>
  7150. <p>A reference to a secret that contains the auth information.</p>
  7151. </td>
  7152. </tr>
  7153. <tr>
  7154. <td>
  7155. <code>remoteNamespace</code></br>
  7156. <em>
  7157. string
  7158. </em>
  7159. </td>
  7160. <td>
  7161. <em>(Optional)</em>
  7162. <p>Remote namespace to fetch the secrets from</p>
  7163. </td>
  7164. </tr>
  7165. </tbody>
  7166. </table>
  7167. <h3 id="external-secrets.io/v1.KubernetesServer">KubernetesServer
  7168. </h3>
  7169. <p>
  7170. (<em>Appears on:</em>
  7171. <a href="#external-secrets.io/v1.KubernetesProvider">KubernetesProvider</a>)
  7172. </p>
  7173. <p>
  7174. </p>
  7175. <table>
  7176. <thead>
  7177. <tr>
  7178. <th>Field</th>
  7179. <th>Description</th>
  7180. </tr>
  7181. </thead>
  7182. <tbody>
  7183. <tr>
  7184. <td>
  7185. <code>url</code></br>
  7186. <em>
  7187. string
  7188. </em>
  7189. </td>
  7190. <td>
  7191. <em>(Optional)</em>
  7192. <p>configures the Kubernetes server Address.</p>
  7193. </td>
  7194. </tr>
  7195. <tr>
  7196. <td>
  7197. <code>caBundle</code></br>
  7198. <em>
  7199. []byte
  7200. </em>
  7201. </td>
  7202. <td>
  7203. <em>(Optional)</em>
  7204. <p>CABundle is a base64-encoded CA certificate</p>
  7205. </td>
  7206. </tr>
  7207. <tr>
  7208. <td>
  7209. <code>caProvider</code></br>
  7210. <em>
  7211. <a href="#external-secrets.io/v1.CAProvider">
  7212. CAProvider
  7213. </a>
  7214. </em>
  7215. </td>
  7216. <td>
  7217. <em>(Optional)</em>
  7218. <p>see: <a href="https://external-secrets.io/v0.4.1/spec/#external-secrets.io/v1alpha1.CAProvider">https://external-secrets.io/v0.4.1/spec/#external-secrets.io/v1alpha1.CAProvider</a></p>
  7219. </td>
  7220. </tr>
  7221. </tbody>
  7222. </table>
  7223. <h3 id="external-secrets.io/v1.LdapAuthCredentials">LdapAuthCredentials
  7224. </h3>
  7225. <p>
  7226. (<em>Appears on:</em>
  7227. <a href="#external-secrets.io/v1.InfisicalAuth">InfisicalAuth</a>)
  7228. </p>
  7229. <p>
  7230. </p>
  7231. <table>
  7232. <thead>
  7233. <tr>
  7234. <th>Field</th>
  7235. <th>Description</th>
  7236. </tr>
  7237. </thead>
  7238. <tbody>
  7239. <tr>
  7240. <td>
  7241. <code>identityId</code></br>
  7242. <em>
  7243. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7244. External Secrets meta/v1.SecretKeySelector
  7245. </a>
  7246. </em>
  7247. </td>
  7248. <td>
  7249. </td>
  7250. </tr>
  7251. <tr>
  7252. <td>
  7253. <code>ldapPassword</code></br>
  7254. <em>
  7255. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7256. External Secrets meta/v1.SecretKeySelector
  7257. </a>
  7258. </em>
  7259. </td>
  7260. <td>
  7261. </td>
  7262. </tr>
  7263. <tr>
  7264. <td>
  7265. <code>ldapUsername</code></br>
  7266. <em>
  7267. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7268. External Secrets meta/v1.SecretKeySelector
  7269. </a>
  7270. </em>
  7271. </td>
  7272. <td>
  7273. </td>
  7274. </tr>
  7275. </tbody>
  7276. </table>
  7277. <h3 id="external-secrets.io/v1.MachineIdentityScopeInWorkspace">MachineIdentityScopeInWorkspace
  7278. </h3>
  7279. <p>
  7280. (<em>Appears on:</em>
  7281. <a href="#external-secrets.io/v1.InfisicalProvider">InfisicalProvider</a>)
  7282. </p>
  7283. <p>
  7284. </p>
  7285. <table>
  7286. <thead>
  7287. <tr>
  7288. <th>Field</th>
  7289. <th>Description</th>
  7290. </tr>
  7291. </thead>
  7292. <tbody>
  7293. <tr>
  7294. <td>
  7295. <code>secretsPath</code></br>
  7296. <em>
  7297. string
  7298. </em>
  7299. </td>
  7300. <td>
  7301. <em>(Optional)</em>
  7302. <p>SecretsPath specifies the path to the secrets within the workspace. Defaults to &ldquo;/&rdquo; if not provided.</p>
  7303. </td>
  7304. </tr>
  7305. <tr>
  7306. <td>
  7307. <code>recursive</code></br>
  7308. <em>
  7309. bool
  7310. </em>
  7311. </td>
  7312. <td>
  7313. <em>(Optional)</em>
  7314. <p>Recursive indicates whether the secrets should be fetched recursively. Defaults to false if not provided.</p>
  7315. </td>
  7316. </tr>
  7317. <tr>
  7318. <td>
  7319. <code>environmentSlug</code></br>
  7320. <em>
  7321. string
  7322. </em>
  7323. </td>
  7324. <td>
  7325. <p>EnvironmentSlug is the required slug identifier for the environment.</p>
  7326. </td>
  7327. </tr>
  7328. <tr>
  7329. <td>
  7330. <code>projectSlug</code></br>
  7331. <em>
  7332. string
  7333. </em>
  7334. </td>
  7335. <td>
  7336. <p>ProjectSlug is the required slug identifier for the project.</p>
  7337. </td>
  7338. </tr>
  7339. <tr>
  7340. <td>
  7341. <code>expandSecretReferences</code></br>
  7342. <em>
  7343. bool
  7344. </em>
  7345. </td>
  7346. <td>
  7347. <em>(Optional)</em>
  7348. <p>ExpandSecretReferences indicates whether secret references should be expanded. Defaults to true if not provided.</p>
  7349. </td>
  7350. </tr>
  7351. </tbody>
  7352. </table>
  7353. <h3 id="external-secrets.io/v1.MaintenanceStatus">MaintenanceStatus
  7354. (<code>bool</code> alias)</p></h3>
  7355. <p>
  7356. </p>
  7357. <table>
  7358. <thead>
  7359. <tr>
  7360. <th>Value</th>
  7361. <th>Description</th>
  7362. </tr>
  7363. </thead>
  7364. <tbody><tr><td><p>true</p></td>
  7365. <td></td>
  7366. </tr><tr><td><p>false</p></td>
  7367. <td></td>
  7368. </tr></tbody>
  7369. </table>
  7370. <h3 id="external-secrets.io/v1.NTLMProtocol">NTLMProtocol
  7371. </h3>
  7372. <p>
  7373. (<em>Appears on:</em>
  7374. <a href="#external-secrets.io/v1.AuthorizationProtocol">AuthorizationProtocol</a>)
  7375. </p>
  7376. <p>
  7377. <p>NTLMProtocol contains the NTLM-specific configuration.</p>
  7378. </p>
  7379. <table>
  7380. <thead>
  7381. <tr>
  7382. <th>Field</th>
  7383. <th>Description</th>
  7384. </tr>
  7385. </thead>
  7386. <tbody>
  7387. <tr>
  7388. <td>
  7389. <code>usernameSecret</code></br>
  7390. <em>
  7391. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7392. External Secrets meta/v1.SecretKeySelector
  7393. </a>
  7394. </em>
  7395. </td>
  7396. <td>
  7397. </td>
  7398. </tr>
  7399. <tr>
  7400. <td>
  7401. <code>passwordSecret</code></br>
  7402. <em>
  7403. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7404. External Secrets meta/v1.SecretKeySelector
  7405. </a>
  7406. </em>
  7407. </td>
  7408. <td>
  7409. </td>
  7410. </tr>
  7411. </tbody>
  7412. </table>
  7413. <h3 id="external-secrets.io/v1.NoSecretError">NoSecretError
  7414. </h3>
  7415. <p>
  7416. <p>NoSecretError shall be returned when a GetSecret can not find the
  7417. desired secret. This is used for deletionPolicy.</p>
  7418. </p>
  7419. <h3 id="external-secrets.io/v1.NotModifiedError">NotModifiedError
  7420. </h3>
  7421. <p>
  7422. <p>NotModifiedError to signal that the webhook received no changes,
  7423. and it should just return without doing anything.</p>
  7424. </p>
  7425. <h3 id="external-secrets.io/v1.OciAuthCredentials">OciAuthCredentials
  7426. </h3>
  7427. <p>
  7428. (<em>Appears on:</em>
  7429. <a href="#external-secrets.io/v1.InfisicalAuth">InfisicalAuth</a>)
  7430. </p>
  7431. <p>
  7432. </p>
  7433. <table>
  7434. <thead>
  7435. <tr>
  7436. <th>Field</th>
  7437. <th>Description</th>
  7438. </tr>
  7439. </thead>
  7440. <tbody>
  7441. <tr>
  7442. <td>
  7443. <code>identityId</code></br>
  7444. <em>
  7445. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7446. External Secrets meta/v1.SecretKeySelector
  7447. </a>
  7448. </em>
  7449. </td>
  7450. <td>
  7451. </td>
  7452. </tr>
  7453. <tr>
  7454. <td>
  7455. <code>privateKey</code></br>
  7456. <em>
  7457. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7458. External Secrets meta/v1.SecretKeySelector
  7459. </a>
  7460. </em>
  7461. </td>
  7462. <td>
  7463. </td>
  7464. </tr>
  7465. <tr>
  7466. <td>
  7467. <code>privateKeyPassphrase</code></br>
  7468. <em>
  7469. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7470. External Secrets meta/v1.SecretKeySelector
  7471. </a>
  7472. </em>
  7473. </td>
  7474. <td>
  7475. <em>(Optional)</em>
  7476. </td>
  7477. </tr>
  7478. <tr>
  7479. <td>
  7480. <code>fingerprint</code></br>
  7481. <em>
  7482. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7483. External Secrets meta/v1.SecretKeySelector
  7484. </a>
  7485. </em>
  7486. </td>
  7487. <td>
  7488. </td>
  7489. </tr>
  7490. <tr>
  7491. <td>
  7492. <code>userId</code></br>
  7493. <em>
  7494. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7495. External Secrets meta/v1.SecretKeySelector
  7496. </a>
  7497. </em>
  7498. </td>
  7499. <td>
  7500. </td>
  7501. </tr>
  7502. <tr>
  7503. <td>
  7504. <code>tenancyId</code></br>
  7505. <em>
  7506. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7507. External Secrets meta/v1.SecretKeySelector
  7508. </a>
  7509. </em>
  7510. </td>
  7511. <td>
  7512. </td>
  7513. </tr>
  7514. <tr>
  7515. <td>
  7516. <code>region</code></br>
  7517. <em>
  7518. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7519. External Secrets meta/v1.SecretKeySelector
  7520. </a>
  7521. </em>
  7522. </td>
  7523. <td>
  7524. </td>
  7525. </tr>
  7526. </tbody>
  7527. </table>
  7528. <h3 id="external-secrets.io/v1.OnboardbaseAuthSecretRef">OnboardbaseAuthSecretRef
  7529. </h3>
  7530. <p>
  7531. (<em>Appears on:</em>
  7532. <a href="#external-secrets.io/v1.OnboardbaseProvider">OnboardbaseProvider</a>)
  7533. </p>
  7534. <p>
  7535. <p>OnboardbaseAuthSecretRef holds secret references for onboardbase API Key credentials.</p>
  7536. </p>
  7537. <table>
  7538. <thead>
  7539. <tr>
  7540. <th>Field</th>
  7541. <th>Description</th>
  7542. </tr>
  7543. </thead>
  7544. <tbody>
  7545. <tr>
  7546. <td>
  7547. <code>apiKeyRef</code></br>
  7548. <em>
  7549. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7550. External Secrets meta/v1.SecretKeySelector
  7551. </a>
  7552. </em>
  7553. </td>
  7554. <td>
  7555. <p>OnboardbaseAPIKey is the APIKey generated by an admin account.
  7556. It is used to recognize and authorize access to a project and environment within onboardbase</p>
  7557. </td>
  7558. </tr>
  7559. <tr>
  7560. <td>
  7561. <code>passcodeRef</code></br>
  7562. <em>
  7563. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7564. External Secrets meta/v1.SecretKeySelector
  7565. </a>
  7566. </em>
  7567. </td>
  7568. <td>
  7569. <p>OnboardbasePasscode is the passcode attached to the API Key</p>
  7570. </td>
  7571. </tr>
  7572. </tbody>
  7573. </table>
  7574. <h3 id="external-secrets.io/v1.OnboardbaseProvider">OnboardbaseProvider
  7575. </h3>
  7576. <p>
  7577. (<em>Appears on:</em>
  7578. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  7579. </p>
  7580. <p>
  7581. <p>OnboardbaseProvider configures a store to sync secrets using the Onboardbase provider.
  7582. Project and Config are required if not using a Service Token.</p>
  7583. </p>
  7584. <table>
  7585. <thead>
  7586. <tr>
  7587. <th>Field</th>
  7588. <th>Description</th>
  7589. </tr>
  7590. </thead>
  7591. <tbody>
  7592. <tr>
  7593. <td>
  7594. <code>auth</code></br>
  7595. <em>
  7596. <a href="#external-secrets.io/v1.OnboardbaseAuthSecretRef">
  7597. OnboardbaseAuthSecretRef
  7598. </a>
  7599. </em>
  7600. </td>
  7601. <td>
  7602. <p>Auth configures how the Operator authenticates with the Onboardbase API</p>
  7603. </td>
  7604. </tr>
  7605. <tr>
  7606. <td>
  7607. <code>apiHost</code></br>
  7608. <em>
  7609. string
  7610. </em>
  7611. </td>
  7612. <td>
  7613. <p>APIHost use this to configure the host url for the API for selfhosted installation, default is <a href="https://public.onboardbase.com/api/v1/">https://public.onboardbase.com/api/v1/</a></p>
  7614. </td>
  7615. </tr>
  7616. <tr>
  7617. <td>
  7618. <code>project</code></br>
  7619. <em>
  7620. string
  7621. </em>
  7622. </td>
  7623. <td>
  7624. <p>Project is an onboardbase project that the secrets should be pulled from</p>
  7625. </td>
  7626. </tr>
  7627. <tr>
  7628. <td>
  7629. <code>environment</code></br>
  7630. <em>
  7631. string
  7632. </em>
  7633. </td>
  7634. <td>
  7635. <p>Environment is the name of an environmnent within a project to pull the secrets from</p>
  7636. </td>
  7637. </tr>
  7638. </tbody>
  7639. </table>
  7640. <h3 id="external-secrets.io/v1.OnePasswordAuth">OnePasswordAuth
  7641. </h3>
  7642. <p>
  7643. (<em>Appears on:</em>
  7644. <a href="#external-secrets.io/v1.OnePasswordProvider">OnePasswordProvider</a>)
  7645. </p>
  7646. <p>
  7647. <p>OnePasswordAuth contains a secretRef for credentials.</p>
  7648. </p>
  7649. <table>
  7650. <thead>
  7651. <tr>
  7652. <th>Field</th>
  7653. <th>Description</th>
  7654. </tr>
  7655. </thead>
  7656. <tbody>
  7657. <tr>
  7658. <td>
  7659. <code>secretRef</code></br>
  7660. <em>
  7661. <a href="#external-secrets.io/v1.OnePasswordAuthSecretRef">
  7662. OnePasswordAuthSecretRef
  7663. </a>
  7664. </em>
  7665. </td>
  7666. <td>
  7667. </td>
  7668. </tr>
  7669. </tbody>
  7670. </table>
  7671. <h3 id="external-secrets.io/v1.OnePasswordAuthSecretRef">OnePasswordAuthSecretRef
  7672. </h3>
  7673. <p>
  7674. (<em>Appears on:</em>
  7675. <a href="#external-secrets.io/v1.OnePasswordAuth">OnePasswordAuth</a>)
  7676. </p>
  7677. <p>
  7678. <p>OnePasswordAuthSecretRef holds secret references for 1Password credentials.</p>
  7679. </p>
  7680. <table>
  7681. <thead>
  7682. <tr>
  7683. <th>Field</th>
  7684. <th>Description</th>
  7685. </tr>
  7686. </thead>
  7687. <tbody>
  7688. <tr>
  7689. <td>
  7690. <code>connectTokenSecretRef</code></br>
  7691. <em>
  7692. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7693. External Secrets meta/v1.SecretKeySelector
  7694. </a>
  7695. </em>
  7696. </td>
  7697. <td>
  7698. <p>The ConnectToken is used for authentication to a 1Password Connect Server.</p>
  7699. </td>
  7700. </tr>
  7701. </tbody>
  7702. </table>
  7703. <h3 id="external-secrets.io/v1.OnePasswordProvider">OnePasswordProvider
  7704. </h3>
  7705. <p>
  7706. (<em>Appears on:</em>
  7707. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  7708. </p>
  7709. <p>
  7710. <p>OnePasswordProvider configures a store to sync secrets using the 1Password Secret Manager provider.</p>
  7711. </p>
  7712. <table>
  7713. <thead>
  7714. <tr>
  7715. <th>Field</th>
  7716. <th>Description</th>
  7717. </tr>
  7718. </thead>
  7719. <tbody>
  7720. <tr>
  7721. <td>
  7722. <code>auth</code></br>
  7723. <em>
  7724. <a href="#external-secrets.io/v1.OnePasswordAuth">
  7725. OnePasswordAuth
  7726. </a>
  7727. </em>
  7728. </td>
  7729. <td>
  7730. <p>Auth defines the information necessary to authenticate against OnePassword Connect Server</p>
  7731. </td>
  7732. </tr>
  7733. <tr>
  7734. <td>
  7735. <code>connectHost</code></br>
  7736. <em>
  7737. string
  7738. </em>
  7739. </td>
  7740. <td>
  7741. <p>ConnectHost defines the OnePassword Connect Server to connect to</p>
  7742. </td>
  7743. </tr>
  7744. <tr>
  7745. <td>
  7746. <code>vaults</code></br>
  7747. <em>
  7748. map[string]int
  7749. </em>
  7750. </td>
  7751. <td>
  7752. <p>Vaults defines which OnePassword vaults to search in which order</p>
  7753. </td>
  7754. </tr>
  7755. </tbody>
  7756. </table>
  7757. <h3 id="external-secrets.io/v1.OnePasswordSDKAuth">OnePasswordSDKAuth
  7758. </h3>
  7759. <p>
  7760. (<em>Appears on:</em>
  7761. <a href="#external-secrets.io/v1.OnePasswordSDKProvider">OnePasswordSDKProvider</a>)
  7762. </p>
  7763. <p>
  7764. <p>OnePasswordSDKAuth contains a secretRef for the service account token.</p>
  7765. </p>
  7766. <table>
  7767. <thead>
  7768. <tr>
  7769. <th>Field</th>
  7770. <th>Description</th>
  7771. </tr>
  7772. </thead>
  7773. <tbody>
  7774. <tr>
  7775. <td>
  7776. <code>serviceAccountSecretRef</code></br>
  7777. <em>
  7778. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7779. External Secrets meta/v1.SecretKeySelector
  7780. </a>
  7781. </em>
  7782. </td>
  7783. <td>
  7784. <p>ServiceAccountSecretRef points to the secret containing the token to access 1Password vault.</p>
  7785. </td>
  7786. </tr>
  7787. </tbody>
  7788. </table>
  7789. <h3 id="external-secrets.io/v1.OnePasswordSDKProvider">OnePasswordSDKProvider
  7790. </h3>
  7791. <p>
  7792. (<em>Appears on:</em>
  7793. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  7794. </p>
  7795. <p>
  7796. <p>OnePasswordSDKProvider configures a store to sync secrets using the 1Password sdk.</p>
  7797. </p>
  7798. <table>
  7799. <thead>
  7800. <tr>
  7801. <th>Field</th>
  7802. <th>Description</th>
  7803. </tr>
  7804. </thead>
  7805. <tbody>
  7806. <tr>
  7807. <td>
  7808. <code>vault</code></br>
  7809. <em>
  7810. string
  7811. </em>
  7812. </td>
  7813. <td>
  7814. <p>Vault defines the vault&rsquo;s name or uuid to access. Do NOT add op:// prefix. This will be done automatically.</p>
  7815. </td>
  7816. </tr>
  7817. <tr>
  7818. <td>
  7819. <code>integrationInfo</code></br>
  7820. <em>
  7821. <a href="#external-secrets.io/v1.IntegrationInfo">
  7822. IntegrationInfo
  7823. </a>
  7824. </em>
  7825. </td>
  7826. <td>
  7827. <em>(Optional)</em>
  7828. <p>IntegrationInfo specifies the name and version of the integration built using the 1Password Go SDK.
  7829. If you don&rsquo;t know which name and version to use, use <code>DefaultIntegrationName</code> and <code>DefaultIntegrationVersion</code>, respectively.</p>
  7830. </td>
  7831. </tr>
  7832. <tr>
  7833. <td>
  7834. <code>auth</code></br>
  7835. <em>
  7836. <a href="#external-secrets.io/v1.OnePasswordSDKAuth">
  7837. OnePasswordSDKAuth
  7838. </a>
  7839. </em>
  7840. </td>
  7841. <td>
  7842. <p>Auth defines the information necessary to authenticate against OnePassword API.</p>
  7843. </td>
  7844. </tr>
  7845. </tbody>
  7846. </table>
  7847. <h3 id="external-secrets.io/v1.OracleAuth">OracleAuth
  7848. </h3>
  7849. <p>
  7850. (<em>Appears on:</em>
  7851. <a href="#external-secrets.io/v1.OracleProvider">OracleProvider</a>)
  7852. </p>
  7853. <p>
  7854. </p>
  7855. <table>
  7856. <thead>
  7857. <tr>
  7858. <th>Field</th>
  7859. <th>Description</th>
  7860. </tr>
  7861. </thead>
  7862. <tbody>
  7863. <tr>
  7864. <td>
  7865. <code>tenancy</code></br>
  7866. <em>
  7867. string
  7868. </em>
  7869. </td>
  7870. <td>
  7871. <p>Tenancy is the tenancy OCID where user is located.</p>
  7872. </td>
  7873. </tr>
  7874. <tr>
  7875. <td>
  7876. <code>user</code></br>
  7877. <em>
  7878. string
  7879. </em>
  7880. </td>
  7881. <td>
  7882. <p>User is an access OCID specific to the account.</p>
  7883. </td>
  7884. </tr>
  7885. <tr>
  7886. <td>
  7887. <code>secretRef</code></br>
  7888. <em>
  7889. <a href="#external-secrets.io/v1.OracleSecretRef">
  7890. OracleSecretRef
  7891. </a>
  7892. </em>
  7893. </td>
  7894. <td>
  7895. <p>SecretRef to pass through sensitive information.</p>
  7896. </td>
  7897. </tr>
  7898. </tbody>
  7899. </table>
  7900. <h3 id="external-secrets.io/v1.OraclePrincipalType">OraclePrincipalType
  7901. (<code>string</code> alias)</p></h3>
  7902. <p>
  7903. (<em>Appears on:</em>
  7904. <a href="#external-secrets.io/v1.OracleProvider">OracleProvider</a>)
  7905. </p>
  7906. <p>
  7907. </p>
  7908. <table>
  7909. <thead>
  7910. <tr>
  7911. <th>Value</th>
  7912. <th>Description</th>
  7913. </tr>
  7914. </thead>
  7915. <tbody><tr><td><p>&#34;InstancePrincipal&#34;</p></td>
  7916. <td><p>InstancePrincipal represents a instance principal.</p>
  7917. </td>
  7918. </tr><tr><td><p>&#34;UserPrincipal&#34;</p></td>
  7919. <td><p>UserPrincipal represents a user principal.</p>
  7920. </td>
  7921. </tr><tr><td><p>&#34;Workload&#34;</p></td>
  7922. <td><p>WorkloadPrincipal represents a workload principal.</p>
  7923. </td>
  7924. </tr></tbody>
  7925. </table>
  7926. <h3 id="external-secrets.io/v1.OracleProvider">OracleProvider
  7927. </h3>
  7928. <p>
  7929. (<em>Appears on:</em>
  7930. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  7931. </p>
  7932. <p>
  7933. <p>Configures an store to sync secrets using a Oracle Vault
  7934. backend.</p>
  7935. </p>
  7936. <table>
  7937. <thead>
  7938. <tr>
  7939. <th>Field</th>
  7940. <th>Description</th>
  7941. </tr>
  7942. </thead>
  7943. <tbody>
  7944. <tr>
  7945. <td>
  7946. <code>region</code></br>
  7947. <em>
  7948. string
  7949. </em>
  7950. </td>
  7951. <td>
  7952. <p>Region is the region where vault is located.</p>
  7953. </td>
  7954. </tr>
  7955. <tr>
  7956. <td>
  7957. <code>vault</code></br>
  7958. <em>
  7959. string
  7960. </em>
  7961. </td>
  7962. <td>
  7963. <p>Vault is the vault&rsquo;s OCID of the specific vault where secret is located.</p>
  7964. </td>
  7965. </tr>
  7966. <tr>
  7967. <td>
  7968. <code>compartment</code></br>
  7969. <em>
  7970. string
  7971. </em>
  7972. </td>
  7973. <td>
  7974. <em>(Optional)</em>
  7975. <p>Compartment is the vault compartment OCID.
  7976. Required for PushSecret</p>
  7977. </td>
  7978. </tr>
  7979. <tr>
  7980. <td>
  7981. <code>encryptionKey</code></br>
  7982. <em>
  7983. string
  7984. </em>
  7985. </td>
  7986. <td>
  7987. <em>(Optional)</em>
  7988. <p>EncryptionKey is the OCID of the encryption key within the vault.
  7989. Required for PushSecret</p>
  7990. </td>
  7991. </tr>
  7992. <tr>
  7993. <td>
  7994. <code>principalType</code></br>
  7995. <em>
  7996. <a href="#external-secrets.io/v1.OraclePrincipalType">
  7997. OraclePrincipalType
  7998. </a>
  7999. </em>
  8000. </td>
  8001. <td>
  8002. <em>(Optional)</em>
  8003. <p>The type of principal to use for authentication. If left blank, the Auth struct will
  8004. determine the principal type. This optional field must be specified if using
  8005. workload identity.</p>
  8006. </td>
  8007. </tr>
  8008. <tr>
  8009. <td>
  8010. <code>auth</code></br>
  8011. <em>
  8012. <a href="#external-secrets.io/v1.OracleAuth">
  8013. OracleAuth
  8014. </a>
  8015. </em>
  8016. </td>
  8017. <td>
  8018. <em>(Optional)</em>
  8019. <p>Auth configures how secret-manager authenticates with the Oracle Vault.
  8020. If empty, use the instance principal, otherwise the user credentials specified in Auth.</p>
  8021. </td>
  8022. </tr>
  8023. <tr>
  8024. <td>
  8025. <code>serviceAccountRef</code></br>
  8026. <em>
  8027. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  8028. External Secrets meta/v1.ServiceAccountSelector
  8029. </a>
  8030. </em>
  8031. </td>
  8032. <td>
  8033. <em>(Optional)</em>
  8034. <p>ServiceAccountRef specified the service account
  8035. that should be used when authenticating with WorkloadIdentity.</p>
  8036. </td>
  8037. </tr>
  8038. </tbody>
  8039. </table>
  8040. <h3 id="external-secrets.io/v1.OracleSecretRef">OracleSecretRef
  8041. </h3>
  8042. <p>
  8043. (<em>Appears on:</em>
  8044. <a href="#external-secrets.io/v1.OracleAuth">OracleAuth</a>)
  8045. </p>
  8046. <p>
  8047. </p>
  8048. <table>
  8049. <thead>
  8050. <tr>
  8051. <th>Field</th>
  8052. <th>Description</th>
  8053. </tr>
  8054. </thead>
  8055. <tbody>
  8056. <tr>
  8057. <td>
  8058. <code>privatekey</code></br>
  8059. <em>
  8060. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8061. External Secrets meta/v1.SecretKeySelector
  8062. </a>
  8063. </em>
  8064. </td>
  8065. <td>
  8066. <p>PrivateKey is the user&rsquo;s API Signing Key in PEM format, used for authentication.</p>
  8067. </td>
  8068. </tr>
  8069. <tr>
  8070. <td>
  8071. <code>fingerprint</code></br>
  8072. <em>
  8073. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8074. External Secrets meta/v1.SecretKeySelector
  8075. </a>
  8076. </em>
  8077. </td>
  8078. <td>
  8079. <p>Fingerprint is the fingerprint of the API private key.</p>
  8080. </td>
  8081. </tr>
  8082. </tbody>
  8083. </table>
  8084. <h3 id="external-secrets.io/v1.PassboltAuth">PassboltAuth
  8085. </h3>
  8086. <p>
  8087. (<em>Appears on:</em>
  8088. <a href="#external-secrets.io/v1.PassboltProvider">PassboltProvider</a>)
  8089. </p>
  8090. <p>
  8091. <p>Passbolt contains a secretRef for the passbolt credentials.</p>
  8092. </p>
  8093. <table>
  8094. <thead>
  8095. <tr>
  8096. <th>Field</th>
  8097. <th>Description</th>
  8098. </tr>
  8099. </thead>
  8100. <tbody>
  8101. <tr>
  8102. <td>
  8103. <code>passwordSecretRef</code></br>
  8104. <em>
  8105. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8106. External Secrets meta/v1.SecretKeySelector
  8107. </a>
  8108. </em>
  8109. </td>
  8110. <td>
  8111. </td>
  8112. </tr>
  8113. <tr>
  8114. <td>
  8115. <code>privateKeySecretRef</code></br>
  8116. <em>
  8117. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8118. External Secrets meta/v1.SecretKeySelector
  8119. </a>
  8120. </em>
  8121. </td>
  8122. <td>
  8123. </td>
  8124. </tr>
  8125. </tbody>
  8126. </table>
  8127. <h3 id="external-secrets.io/v1.PassboltProvider">PassboltProvider
  8128. </h3>
  8129. <p>
  8130. (<em>Appears on:</em>
  8131. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  8132. </p>
  8133. <p>
  8134. </p>
  8135. <table>
  8136. <thead>
  8137. <tr>
  8138. <th>Field</th>
  8139. <th>Description</th>
  8140. </tr>
  8141. </thead>
  8142. <tbody>
  8143. <tr>
  8144. <td>
  8145. <code>auth</code></br>
  8146. <em>
  8147. <a href="#external-secrets.io/v1.PassboltAuth">
  8148. PassboltAuth
  8149. </a>
  8150. </em>
  8151. </td>
  8152. <td>
  8153. <p>Auth defines the information necessary to authenticate against Passbolt Server</p>
  8154. </td>
  8155. </tr>
  8156. <tr>
  8157. <td>
  8158. <code>host</code></br>
  8159. <em>
  8160. string
  8161. </em>
  8162. </td>
  8163. <td>
  8164. <p>Host defines the Passbolt Server to connect to</p>
  8165. </td>
  8166. </tr>
  8167. </tbody>
  8168. </table>
  8169. <h3 id="external-secrets.io/v1.PasswordDepotAuth">PasswordDepotAuth
  8170. </h3>
  8171. <p>
  8172. (<em>Appears on:</em>
  8173. <a href="#external-secrets.io/v1.PasswordDepotProvider">PasswordDepotProvider</a>)
  8174. </p>
  8175. <p>
  8176. </p>
  8177. <table>
  8178. <thead>
  8179. <tr>
  8180. <th>Field</th>
  8181. <th>Description</th>
  8182. </tr>
  8183. </thead>
  8184. <tbody>
  8185. <tr>
  8186. <td>
  8187. <code>secretRef</code></br>
  8188. <em>
  8189. <a href="#external-secrets.io/v1.PasswordDepotSecretRef">
  8190. PasswordDepotSecretRef
  8191. </a>
  8192. </em>
  8193. </td>
  8194. <td>
  8195. </td>
  8196. </tr>
  8197. </tbody>
  8198. </table>
  8199. <h3 id="external-secrets.io/v1.PasswordDepotProvider">PasswordDepotProvider
  8200. </h3>
  8201. <p>
  8202. (<em>Appears on:</em>
  8203. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  8204. </p>
  8205. <p>
  8206. <p>Configures a store to sync secrets with a Password Depot instance.</p>
  8207. </p>
  8208. <table>
  8209. <thead>
  8210. <tr>
  8211. <th>Field</th>
  8212. <th>Description</th>
  8213. </tr>
  8214. </thead>
  8215. <tbody>
  8216. <tr>
  8217. <td>
  8218. <code>host</code></br>
  8219. <em>
  8220. string
  8221. </em>
  8222. </td>
  8223. <td>
  8224. <p>URL configures the Password Depot instance URL.</p>
  8225. </td>
  8226. </tr>
  8227. <tr>
  8228. <td>
  8229. <code>database</code></br>
  8230. <em>
  8231. string
  8232. </em>
  8233. </td>
  8234. <td>
  8235. <p>Database to use as source</p>
  8236. </td>
  8237. </tr>
  8238. <tr>
  8239. <td>
  8240. <code>auth</code></br>
  8241. <em>
  8242. <a href="#external-secrets.io/v1.PasswordDepotAuth">
  8243. PasswordDepotAuth
  8244. </a>
  8245. </em>
  8246. </td>
  8247. <td>
  8248. <p>Auth configures how secret-manager authenticates with a Password Depot instance.</p>
  8249. </td>
  8250. </tr>
  8251. </tbody>
  8252. </table>
  8253. <h3 id="external-secrets.io/v1.PasswordDepotSecretRef">PasswordDepotSecretRef
  8254. </h3>
  8255. <p>
  8256. (<em>Appears on:</em>
  8257. <a href="#external-secrets.io/v1.PasswordDepotAuth">PasswordDepotAuth</a>)
  8258. </p>
  8259. <p>
  8260. </p>
  8261. <table>
  8262. <thead>
  8263. <tr>
  8264. <th>Field</th>
  8265. <th>Description</th>
  8266. </tr>
  8267. </thead>
  8268. <tbody>
  8269. <tr>
  8270. <td>
  8271. <code>credentials</code></br>
  8272. <em>
  8273. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8274. External Secrets meta/v1.SecretKeySelector
  8275. </a>
  8276. </em>
  8277. </td>
  8278. <td>
  8279. <em>(Optional)</em>
  8280. <p>Username / Password is used for authentication.</p>
  8281. </td>
  8282. </tr>
  8283. </tbody>
  8284. </table>
  8285. <h3 id="external-secrets.io/v1.PreviderAuth">PreviderAuth
  8286. </h3>
  8287. <p>
  8288. (<em>Appears on:</em>
  8289. <a href="#external-secrets.io/v1.PreviderProvider">PreviderProvider</a>)
  8290. </p>
  8291. <p>
  8292. <p>PreviderAuth contains a secretRef for credentials.</p>
  8293. </p>
  8294. <table>
  8295. <thead>
  8296. <tr>
  8297. <th>Field</th>
  8298. <th>Description</th>
  8299. </tr>
  8300. </thead>
  8301. <tbody>
  8302. <tr>
  8303. <td>
  8304. <code>secretRef</code></br>
  8305. <em>
  8306. <a href="#external-secrets.io/v1.PreviderAuthSecretRef">
  8307. PreviderAuthSecretRef
  8308. </a>
  8309. </em>
  8310. </td>
  8311. <td>
  8312. <em>(Optional)</em>
  8313. </td>
  8314. </tr>
  8315. </tbody>
  8316. </table>
  8317. <h3 id="external-secrets.io/v1.PreviderAuthSecretRef">PreviderAuthSecretRef
  8318. </h3>
  8319. <p>
  8320. (<em>Appears on:</em>
  8321. <a href="#external-secrets.io/v1.PreviderAuth">PreviderAuth</a>)
  8322. </p>
  8323. <p>
  8324. <p>PreviderAuthSecretRef holds secret references for Previder Vault credentials.</p>
  8325. </p>
  8326. <table>
  8327. <thead>
  8328. <tr>
  8329. <th>Field</th>
  8330. <th>Description</th>
  8331. </tr>
  8332. </thead>
  8333. <tbody>
  8334. <tr>
  8335. <td>
  8336. <code>accessToken</code></br>
  8337. <em>
  8338. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8339. External Secrets meta/v1.SecretKeySelector
  8340. </a>
  8341. </em>
  8342. </td>
  8343. <td>
  8344. <p>The AccessToken is used for authentication</p>
  8345. </td>
  8346. </tr>
  8347. </tbody>
  8348. </table>
  8349. <h3 id="external-secrets.io/v1.PreviderProvider">PreviderProvider
  8350. </h3>
  8351. <p>
  8352. (<em>Appears on:</em>
  8353. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  8354. </p>
  8355. <p>
  8356. <p>PreviderProvider configures a store to sync secrets using the Previder Secret Manager provider.</p>
  8357. </p>
  8358. <table>
  8359. <thead>
  8360. <tr>
  8361. <th>Field</th>
  8362. <th>Description</th>
  8363. </tr>
  8364. </thead>
  8365. <tbody>
  8366. <tr>
  8367. <td>
  8368. <code>auth</code></br>
  8369. <em>
  8370. <a href="#external-secrets.io/v1.PreviderAuth">
  8371. PreviderAuth
  8372. </a>
  8373. </em>
  8374. </td>
  8375. <td>
  8376. </td>
  8377. </tr>
  8378. <tr>
  8379. <td>
  8380. <code>baseUri</code></br>
  8381. <em>
  8382. string
  8383. </em>
  8384. </td>
  8385. <td>
  8386. <em>(Optional)</em>
  8387. </td>
  8388. </tr>
  8389. </tbody>
  8390. </table>
  8391. <h3 id="external-secrets.io/v1.Provider">Provider
  8392. </h3>
  8393. <p>
  8394. <p>Provider is a common interface for interacting with secret backends.</p>
  8395. </p>
  8396. <h3 id="external-secrets.io/v1.PulumiProvider">PulumiProvider
  8397. </h3>
  8398. <p>
  8399. (<em>Appears on:</em>
  8400. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  8401. </p>
  8402. <p>
  8403. </p>
  8404. <table>
  8405. <thead>
  8406. <tr>
  8407. <th>Field</th>
  8408. <th>Description</th>
  8409. </tr>
  8410. </thead>
  8411. <tbody>
  8412. <tr>
  8413. <td>
  8414. <code>apiUrl</code></br>
  8415. <em>
  8416. string
  8417. </em>
  8418. </td>
  8419. <td>
  8420. <p>APIURL is the URL of the Pulumi API.</p>
  8421. </td>
  8422. </tr>
  8423. <tr>
  8424. <td>
  8425. <code>accessToken</code></br>
  8426. <em>
  8427. <a href="#external-secrets.io/v1.PulumiProviderSecretRef">
  8428. PulumiProviderSecretRef
  8429. </a>
  8430. </em>
  8431. </td>
  8432. <td>
  8433. <p>AccessToken is the access tokens to sign in to the Pulumi Cloud Console.</p>
  8434. </td>
  8435. </tr>
  8436. <tr>
  8437. <td>
  8438. <code>organization</code></br>
  8439. <em>
  8440. string
  8441. </em>
  8442. </td>
  8443. <td>
  8444. <p>Organization are a space to collaborate on shared projects and stacks.
  8445. To create a new organization, visit <a href="https://app.pulumi.com/">https://app.pulumi.com/</a> and click &ldquo;New Organization&rdquo;.</p>
  8446. </td>
  8447. </tr>
  8448. <tr>
  8449. <td>
  8450. <code>project</code></br>
  8451. <em>
  8452. string
  8453. </em>
  8454. </td>
  8455. <td>
  8456. <p>Project is the name of the Pulumi ESC project the environment belongs to.</p>
  8457. </td>
  8458. </tr>
  8459. <tr>
  8460. <td>
  8461. <code>environment</code></br>
  8462. <em>
  8463. string
  8464. </em>
  8465. </td>
  8466. <td>
  8467. <p>Environment are YAML documents composed of static key-value pairs, programmatic expressions,
  8468. dynamically retrieved values from supported providers including all major clouds,
  8469. and other Pulumi ESC environments.
  8470. To create a new environment, visit <a href="https://www.pulumi.com/docs/esc/environments/">https://www.pulumi.com/docs/esc/environments/</a> for more information.</p>
  8471. </td>
  8472. </tr>
  8473. </tbody>
  8474. </table>
  8475. <h3 id="external-secrets.io/v1.PulumiProviderSecretRef">PulumiProviderSecretRef
  8476. </h3>
  8477. <p>
  8478. (<em>Appears on:</em>
  8479. <a href="#external-secrets.io/v1.PulumiProvider">PulumiProvider</a>)
  8480. </p>
  8481. <p>
  8482. </p>
  8483. <table>
  8484. <thead>
  8485. <tr>
  8486. <th>Field</th>
  8487. <th>Description</th>
  8488. </tr>
  8489. </thead>
  8490. <tbody>
  8491. <tr>
  8492. <td>
  8493. <code>secretRef</code></br>
  8494. <em>
  8495. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8496. External Secrets meta/v1.SecretKeySelector
  8497. </a>
  8498. </em>
  8499. </td>
  8500. <td>
  8501. <p>SecretRef is a reference to a secret containing the Pulumi API token.</p>
  8502. </td>
  8503. </tr>
  8504. </tbody>
  8505. </table>
  8506. <h3 id="external-secrets.io/v1.PushSecretData">PushSecretData
  8507. </h3>
  8508. <p>
  8509. <p>PushSecretData is an interface to allow using v1alpha1.PushSecretData content in Provider registered in v1.</p>
  8510. </p>
  8511. <h3 id="external-secrets.io/v1.PushSecretRemoteRef">PushSecretRemoteRef
  8512. </h3>
  8513. <p>
  8514. <p>PushSecretRemoteRef is an interface to allow using v1alpha1.PushSecretRemoteRef in Provider registered in v1.</p>
  8515. </p>
  8516. <h3 id="external-secrets.io/v1.ScalewayProvider">ScalewayProvider
  8517. </h3>
  8518. <p>
  8519. (<em>Appears on:</em>
  8520. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  8521. </p>
  8522. <p>
  8523. </p>
  8524. <table>
  8525. <thead>
  8526. <tr>
  8527. <th>Field</th>
  8528. <th>Description</th>
  8529. </tr>
  8530. </thead>
  8531. <tbody>
  8532. <tr>
  8533. <td>
  8534. <code>apiUrl</code></br>
  8535. <em>
  8536. string
  8537. </em>
  8538. </td>
  8539. <td>
  8540. <em>(Optional)</em>
  8541. <p>APIURL is the url of the api to use. Defaults to <a href="https://api.scaleway.com">https://api.scaleway.com</a></p>
  8542. </td>
  8543. </tr>
  8544. <tr>
  8545. <td>
  8546. <code>region</code></br>
  8547. <em>
  8548. string
  8549. </em>
  8550. </td>
  8551. <td>
  8552. <p>Region where your secrets are located: <a href="https://developers.scaleway.com/en/quickstart/#region-and-zone">https://developers.scaleway.com/en/quickstart/#region-and-zone</a></p>
  8553. </td>
  8554. </tr>
  8555. <tr>
  8556. <td>
  8557. <code>projectId</code></br>
  8558. <em>
  8559. string
  8560. </em>
  8561. </td>
  8562. <td>
  8563. <p>ProjectID is the id of your project, which you can find in the console: <a href="https://console.scaleway.com/project/settings">https://console.scaleway.com/project/settings</a></p>
  8564. </td>
  8565. </tr>
  8566. <tr>
  8567. <td>
  8568. <code>accessKey</code></br>
  8569. <em>
  8570. <a href="#external-secrets.io/v1.ScalewayProviderSecretRef">
  8571. ScalewayProviderSecretRef
  8572. </a>
  8573. </em>
  8574. </td>
  8575. <td>
  8576. <p>AccessKey is the non-secret part of the api key.</p>
  8577. </td>
  8578. </tr>
  8579. <tr>
  8580. <td>
  8581. <code>secretKey</code></br>
  8582. <em>
  8583. <a href="#external-secrets.io/v1.ScalewayProviderSecretRef">
  8584. ScalewayProviderSecretRef
  8585. </a>
  8586. </em>
  8587. </td>
  8588. <td>
  8589. <p>SecretKey is the non-secret part of the api key.</p>
  8590. </td>
  8591. </tr>
  8592. </tbody>
  8593. </table>
  8594. <h3 id="external-secrets.io/v1.ScalewayProviderSecretRef">ScalewayProviderSecretRef
  8595. </h3>
  8596. <p>
  8597. (<em>Appears on:</em>
  8598. <a href="#external-secrets.io/v1.ScalewayProvider">ScalewayProvider</a>)
  8599. </p>
  8600. <p>
  8601. </p>
  8602. <table>
  8603. <thead>
  8604. <tr>
  8605. <th>Field</th>
  8606. <th>Description</th>
  8607. </tr>
  8608. </thead>
  8609. <tbody>
  8610. <tr>
  8611. <td>
  8612. <code>value</code></br>
  8613. <em>
  8614. string
  8615. </em>
  8616. </td>
  8617. <td>
  8618. <em>(Optional)</em>
  8619. <p>Value can be specified directly to set a value without using a secret.</p>
  8620. </td>
  8621. </tr>
  8622. <tr>
  8623. <td>
  8624. <code>secretRef</code></br>
  8625. <em>
  8626. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8627. External Secrets meta/v1.SecretKeySelector
  8628. </a>
  8629. </em>
  8630. </td>
  8631. <td>
  8632. <em>(Optional)</em>
  8633. <p>SecretRef references a key in a secret that will be used as value.</p>
  8634. </td>
  8635. </tr>
  8636. </tbody>
  8637. </table>
  8638. <h3 id="external-secrets.io/v1.SecretServerProvider">SecretServerProvider
  8639. </h3>
  8640. <p>
  8641. (<em>Appears on:</em>
  8642. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  8643. </p>
  8644. <p>
  8645. <p>See <a href="https://github.com/DelineaXPM/tss-sdk-go/blob/main/server/server.go">https://github.com/DelineaXPM/tss-sdk-go/blob/main/server/server.go</a>.</p>
  8646. </p>
  8647. <table>
  8648. <thead>
  8649. <tr>
  8650. <th>Field</th>
  8651. <th>Description</th>
  8652. </tr>
  8653. </thead>
  8654. <tbody>
  8655. <tr>
  8656. <td>
  8657. <code>username</code></br>
  8658. <em>
  8659. <a href="#external-secrets.io/v1.SecretServerProviderRef">
  8660. SecretServerProviderRef
  8661. </a>
  8662. </em>
  8663. </td>
  8664. <td>
  8665. <p>Username is the secret server account username.</p>
  8666. </td>
  8667. </tr>
  8668. <tr>
  8669. <td>
  8670. <code>password</code></br>
  8671. <em>
  8672. <a href="#external-secrets.io/v1.SecretServerProviderRef">
  8673. SecretServerProviderRef
  8674. </a>
  8675. </em>
  8676. </td>
  8677. <td>
  8678. <p>Password is the secret server account password.</p>
  8679. </td>
  8680. </tr>
  8681. <tr>
  8682. <td>
  8683. <code>serverURL</code></br>
  8684. <em>
  8685. string
  8686. </em>
  8687. </td>
  8688. <td>
  8689. <p>ServerURL
  8690. URL to your secret server installation</p>
  8691. </td>
  8692. </tr>
  8693. </tbody>
  8694. </table>
  8695. <h3 id="external-secrets.io/v1.SecretServerProviderRef">SecretServerProviderRef
  8696. </h3>
  8697. <p>
  8698. (<em>Appears on:</em>
  8699. <a href="#external-secrets.io/v1.SecretServerProvider">SecretServerProvider</a>)
  8700. </p>
  8701. <p>
  8702. </p>
  8703. <table>
  8704. <thead>
  8705. <tr>
  8706. <th>Field</th>
  8707. <th>Description</th>
  8708. </tr>
  8709. </thead>
  8710. <tbody>
  8711. <tr>
  8712. <td>
  8713. <code>value</code></br>
  8714. <em>
  8715. string
  8716. </em>
  8717. </td>
  8718. <td>
  8719. <em>(Optional)</em>
  8720. <p>Value can be specified directly to set a value without using a secret.</p>
  8721. </td>
  8722. </tr>
  8723. <tr>
  8724. <td>
  8725. <code>secretRef</code></br>
  8726. <em>
  8727. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8728. External Secrets meta/v1.SecretKeySelector
  8729. </a>
  8730. </em>
  8731. </td>
  8732. <td>
  8733. <em>(Optional)</em>
  8734. <p>SecretRef references a key in a secret that will be used as value.</p>
  8735. </td>
  8736. </tr>
  8737. </tbody>
  8738. </table>
  8739. <h3 id="external-secrets.io/v1.SecretStore">SecretStore
  8740. </h3>
  8741. <p>
  8742. <p>SecretStore represents a secure external location for storing secrets, which can be referenced as part of <code>storeRef</code> fields.</p>
  8743. </p>
  8744. <table>
  8745. <thead>
  8746. <tr>
  8747. <th>Field</th>
  8748. <th>Description</th>
  8749. </tr>
  8750. </thead>
  8751. <tbody>
  8752. <tr>
  8753. <td>
  8754. <code>metadata</code></br>
  8755. <em>
  8756. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#objectmeta-v1-meta">
  8757. Kubernetes meta/v1.ObjectMeta
  8758. </a>
  8759. </em>
  8760. </td>
  8761. <td>
  8762. Refer to the Kubernetes API documentation for the fields of the
  8763. <code>metadata</code> field.
  8764. </td>
  8765. </tr>
  8766. <tr>
  8767. <td>
  8768. <code>spec</code></br>
  8769. <em>
  8770. <a href="#external-secrets.io/v1.SecretStoreSpec">
  8771. SecretStoreSpec
  8772. </a>
  8773. </em>
  8774. </td>
  8775. <td>
  8776. <br/>
  8777. <br/>
  8778. <table>
  8779. <tr>
  8780. <td>
  8781. <code>controller</code></br>
  8782. <em>
  8783. string
  8784. </em>
  8785. </td>
  8786. <td>
  8787. <em>(Optional)</em>
  8788. <p>Used to select the correct ESO controller (think: ingress.ingressClassName)
  8789. The ESO controller is instantiated with a specific controller name and filters ES based on this property</p>
  8790. </td>
  8791. </tr>
  8792. <tr>
  8793. <td>
  8794. <code>provider</code></br>
  8795. <em>
  8796. <a href="#external-secrets.io/v1.SecretStoreProvider">
  8797. SecretStoreProvider
  8798. </a>
  8799. </em>
  8800. </td>
  8801. <td>
  8802. <p>Used to configure the provider. Only one provider may be set</p>
  8803. </td>
  8804. </tr>
  8805. <tr>
  8806. <td>
  8807. <code>retrySettings</code></br>
  8808. <em>
  8809. <a href="#external-secrets.io/v1.SecretStoreRetrySettings">
  8810. SecretStoreRetrySettings
  8811. </a>
  8812. </em>
  8813. </td>
  8814. <td>
  8815. <em>(Optional)</em>
  8816. <p>Used to configure http retries if failed</p>
  8817. </td>
  8818. </tr>
  8819. <tr>
  8820. <td>
  8821. <code>refreshInterval</code></br>
  8822. <em>
  8823. int
  8824. </em>
  8825. </td>
  8826. <td>
  8827. <em>(Optional)</em>
  8828. <p>Used to configure store refresh interval in seconds. Empty or 0 will default to the controller config.</p>
  8829. </td>
  8830. </tr>
  8831. <tr>
  8832. <td>
  8833. <code>conditions</code></br>
  8834. <em>
  8835. <a href="#external-secrets.io/v1.ClusterSecretStoreCondition">
  8836. []ClusterSecretStoreCondition
  8837. </a>
  8838. </em>
  8839. </td>
  8840. <td>
  8841. <em>(Optional)</em>
  8842. <p>Used to constraint a ClusterSecretStore to specific namespaces. Relevant only to ClusterSecretStore</p>
  8843. </td>
  8844. </tr>
  8845. </table>
  8846. </td>
  8847. </tr>
  8848. <tr>
  8849. <td>
  8850. <code>status</code></br>
  8851. <em>
  8852. <a href="#external-secrets.io/v1.SecretStoreStatus">
  8853. SecretStoreStatus
  8854. </a>
  8855. </em>
  8856. </td>
  8857. <td>
  8858. </td>
  8859. </tr>
  8860. </tbody>
  8861. </table>
  8862. <h3 id="external-secrets.io/v1.SecretStoreCapabilities">SecretStoreCapabilities
  8863. (<code>string</code> alias)</p></h3>
  8864. <p>
  8865. (<em>Appears on:</em>
  8866. <a href="#external-secrets.io/v1.SecretStoreStatus">SecretStoreStatus</a>)
  8867. </p>
  8868. <p>
  8869. <p>SecretStoreCapabilities defines the possible operations a SecretStore can do.</p>
  8870. </p>
  8871. <table>
  8872. <thead>
  8873. <tr>
  8874. <th>Value</th>
  8875. <th>Description</th>
  8876. </tr>
  8877. </thead>
  8878. <tbody><tr><td><p>&#34;ReadOnly&#34;</p></td>
  8879. <td></td>
  8880. </tr><tr><td><p>&#34;ReadWrite&#34;</p></td>
  8881. <td></td>
  8882. </tr><tr><td><p>&#34;WriteOnly&#34;</p></td>
  8883. <td></td>
  8884. </tr></tbody>
  8885. </table>
  8886. <h3 id="external-secrets.io/v1.SecretStoreConditionType">SecretStoreConditionType
  8887. (<code>string</code> alias)</p></h3>
  8888. <p>
  8889. (<em>Appears on:</em>
  8890. <a href="#external-secrets.io/v1.SecretStoreStatusCondition">SecretStoreStatusCondition</a>)
  8891. </p>
  8892. <p>
  8893. </p>
  8894. <table>
  8895. <thead>
  8896. <tr>
  8897. <th>Value</th>
  8898. <th>Description</th>
  8899. </tr>
  8900. </thead>
  8901. <tbody><tr><td><p>&#34;Ready&#34;</p></td>
  8902. <td></td>
  8903. </tr></tbody>
  8904. </table>
  8905. <h3 id="external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider
  8906. </h3>
  8907. <p>
  8908. (<em>Appears on:</em>
  8909. <a href="#external-secrets.io/v1.SecretStoreSpec">SecretStoreSpec</a>)
  8910. </p>
  8911. <p>
  8912. <p>SecretStoreProvider contains the provider-specific configuration.</p>
  8913. </p>
  8914. <table>
  8915. <thead>
  8916. <tr>
  8917. <th>Field</th>
  8918. <th>Description</th>
  8919. </tr>
  8920. </thead>
  8921. <tbody>
  8922. <tr>
  8923. <td>
  8924. <code>aws</code></br>
  8925. <em>
  8926. <a href="#external-secrets.io/v1.AWSProvider">
  8927. AWSProvider
  8928. </a>
  8929. </em>
  8930. </td>
  8931. <td>
  8932. <em>(Optional)</em>
  8933. <p>AWS configures this store to sync secrets using AWS Secret Manager provider</p>
  8934. </td>
  8935. </tr>
  8936. <tr>
  8937. <td>
  8938. <code>azurekv</code></br>
  8939. <em>
  8940. <a href="#external-secrets.io/v1.AzureKVProvider">
  8941. AzureKVProvider
  8942. </a>
  8943. </em>
  8944. </td>
  8945. <td>
  8946. <em>(Optional)</em>
  8947. <p>AzureKV configures this store to sync secrets using Azure Key Vault provider</p>
  8948. </td>
  8949. </tr>
  8950. <tr>
  8951. <td>
  8952. <code>akeyless</code></br>
  8953. <em>
  8954. <a href="#external-secrets.io/v1.AkeylessProvider">
  8955. AkeylessProvider
  8956. </a>
  8957. </em>
  8958. </td>
  8959. <td>
  8960. <em>(Optional)</em>
  8961. <p>Akeyless configures this store to sync secrets using Akeyless Vault provider</p>
  8962. </td>
  8963. </tr>
  8964. <tr>
  8965. <td>
  8966. <code>bitwardensecretsmanager</code></br>
  8967. <em>
  8968. <a href="#external-secrets.io/v1.BitwardenSecretsManagerProvider">
  8969. BitwardenSecretsManagerProvider
  8970. </a>
  8971. </em>
  8972. </td>
  8973. <td>
  8974. <em>(Optional)</em>
  8975. <p>BitwardenSecretsManager configures this store to sync secrets using BitwardenSecretsManager provider</p>
  8976. </td>
  8977. </tr>
  8978. <tr>
  8979. <td>
  8980. <code>vault</code></br>
  8981. <em>
  8982. <a href="#external-secrets.io/v1.VaultProvider">
  8983. VaultProvider
  8984. </a>
  8985. </em>
  8986. </td>
  8987. <td>
  8988. <em>(Optional)</em>
  8989. <p>Vault configures this store to sync secrets using Hashi provider</p>
  8990. </td>
  8991. </tr>
  8992. <tr>
  8993. <td>
  8994. <code>gcpsm</code></br>
  8995. <em>
  8996. <a href="#external-secrets.io/v1.GCPSMProvider">
  8997. GCPSMProvider
  8998. </a>
  8999. </em>
  9000. </td>
  9001. <td>
  9002. <em>(Optional)</em>
  9003. <p>GCPSM configures this store to sync secrets using Google Cloud Platform Secret Manager provider</p>
  9004. </td>
  9005. </tr>
  9006. <tr>
  9007. <td>
  9008. <code>oracle</code></br>
  9009. <em>
  9010. <a href="#external-secrets.io/v1.OracleProvider">
  9011. OracleProvider
  9012. </a>
  9013. </em>
  9014. </td>
  9015. <td>
  9016. <em>(Optional)</em>
  9017. <p>Oracle configures this store to sync secrets using Oracle Vault provider</p>
  9018. </td>
  9019. </tr>
  9020. <tr>
  9021. <td>
  9022. <code>ibm</code></br>
  9023. <em>
  9024. <a href="#external-secrets.io/v1.IBMProvider">
  9025. IBMProvider
  9026. </a>
  9027. </em>
  9028. </td>
  9029. <td>
  9030. <em>(Optional)</em>
  9031. <p>IBM configures this store to sync secrets using IBM Cloud provider</p>
  9032. </td>
  9033. </tr>
  9034. <tr>
  9035. <td>
  9036. <code>yandexcertificatemanager</code></br>
  9037. <em>
  9038. <a href="#external-secrets.io/v1.YandexCertificateManagerProvider">
  9039. YandexCertificateManagerProvider
  9040. </a>
  9041. </em>
  9042. </td>
  9043. <td>
  9044. <em>(Optional)</em>
  9045. <p>YandexCertificateManager configures this store to sync secrets using Yandex Certificate Manager provider</p>
  9046. </td>
  9047. </tr>
  9048. <tr>
  9049. <td>
  9050. <code>yandexlockbox</code></br>
  9051. <em>
  9052. <a href="#external-secrets.io/v1.YandexLockboxProvider">
  9053. YandexLockboxProvider
  9054. </a>
  9055. </em>
  9056. </td>
  9057. <td>
  9058. <em>(Optional)</em>
  9059. <p>YandexLockbox configures this store to sync secrets using Yandex Lockbox provider</p>
  9060. </td>
  9061. </tr>
  9062. <tr>
  9063. <td>
  9064. <code>github</code></br>
  9065. <em>
  9066. <a href="#external-secrets.io/v1.GithubProvider">
  9067. GithubProvider
  9068. </a>
  9069. </em>
  9070. </td>
  9071. <td>
  9072. <em>(Optional)</em>
  9073. <p>Github configures this store to push Github Action secrets using Github API provider</p>
  9074. </td>
  9075. </tr>
  9076. <tr>
  9077. <td>
  9078. <code>gitlab</code></br>
  9079. <em>
  9080. <a href="#external-secrets.io/v1.GitlabProvider">
  9081. GitlabProvider
  9082. </a>
  9083. </em>
  9084. </td>
  9085. <td>
  9086. <em>(Optional)</em>
  9087. <p>GitLab configures this store to sync secrets using GitLab Variables provider</p>
  9088. </td>
  9089. </tr>
  9090. <tr>
  9091. <td>
  9092. <code>alibaba</code></br>
  9093. <em>
  9094. <a href="#external-secrets.io/v1.AlibabaProvider">
  9095. AlibabaProvider
  9096. </a>
  9097. </em>
  9098. </td>
  9099. <td>
  9100. <em>(Optional)</em>
  9101. <p>Alibaba configures this store to sync secrets using Alibaba Cloud provider</p>
  9102. </td>
  9103. </tr>
  9104. <tr>
  9105. <td>
  9106. <code>onepassword</code></br>
  9107. <em>
  9108. <a href="#external-secrets.io/v1.OnePasswordProvider">
  9109. OnePasswordProvider
  9110. </a>
  9111. </em>
  9112. </td>
  9113. <td>
  9114. <em>(Optional)</em>
  9115. <p>OnePassword configures this store to sync secrets using the 1Password Cloud provider</p>
  9116. </td>
  9117. </tr>
  9118. <tr>
  9119. <td>
  9120. <code>onepasswordSDK</code></br>
  9121. <em>
  9122. <a href="#external-secrets.io/v1.OnePasswordSDKProvider">
  9123. OnePasswordSDKProvider
  9124. </a>
  9125. </em>
  9126. </td>
  9127. <td>
  9128. <em>(Optional)</em>
  9129. <p>OnePasswordSDK configures this store to use 1Password&rsquo;s new Go SDK to sync secrets.</p>
  9130. </td>
  9131. </tr>
  9132. <tr>
  9133. <td>
  9134. <code>webhook</code></br>
  9135. <em>
  9136. <a href="#external-secrets.io/v1.WebhookProvider">
  9137. WebhookProvider
  9138. </a>
  9139. </em>
  9140. </td>
  9141. <td>
  9142. <em>(Optional)</em>
  9143. <p>Webhook configures this store to sync secrets using a generic templated webhook</p>
  9144. </td>
  9145. </tr>
  9146. <tr>
  9147. <td>
  9148. <code>kubernetes</code></br>
  9149. <em>
  9150. <a href="#external-secrets.io/v1.KubernetesProvider">
  9151. KubernetesProvider
  9152. </a>
  9153. </em>
  9154. </td>
  9155. <td>
  9156. <em>(Optional)</em>
  9157. <p>Kubernetes configures this store to sync secrets using a Kubernetes cluster provider</p>
  9158. </td>
  9159. </tr>
  9160. <tr>
  9161. <td>
  9162. <code>fake</code></br>
  9163. <em>
  9164. <a href="#external-secrets.io/v1.FakeProvider">
  9165. FakeProvider
  9166. </a>
  9167. </em>
  9168. </td>
  9169. <td>
  9170. <em>(Optional)</em>
  9171. <p>Fake configures a store with static key/value pairs</p>
  9172. </td>
  9173. </tr>
  9174. <tr>
  9175. <td>
  9176. <code>senhasegura</code></br>
  9177. <em>
  9178. <a href="#external-secrets.io/v1.SenhaseguraProvider">
  9179. SenhaseguraProvider
  9180. </a>
  9181. </em>
  9182. </td>
  9183. <td>
  9184. <em>(Optional)</em>
  9185. <p>Senhasegura configures this store to sync secrets using senhasegura provider</p>
  9186. </td>
  9187. </tr>
  9188. <tr>
  9189. <td>
  9190. <code>scaleway</code></br>
  9191. <em>
  9192. <a href="#external-secrets.io/v1.ScalewayProvider">
  9193. ScalewayProvider
  9194. </a>
  9195. </em>
  9196. </td>
  9197. <td>
  9198. <em>(Optional)</em>
  9199. <p>Scaleway</p>
  9200. </td>
  9201. </tr>
  9202. <tr>
  9203. <td>
  9204. <code>doppler</code></br>
  9205. <em>
  9206. <a href="#external-secrets.io/v1.DopplerProvider">
  9207. DopplerProvider
  9208. </a>
  9209. </em>
  9210. </td>
  9211. <td>
  9212. <em>(Optional)</em>
  9213. <p>Doppler configures this store to sync secrets using the Doppler provider</p>
  9214. </td>
  9215. </tr>
  9216. <tr>
  9217. <td>
  9218. <code>previder</code></br>
  9219. <em>
  9220. <a href="#external-secrets.io/v1.PreviderProvider">
  9221. PreviderProvider
  9222. </a>
  9223. </em>
  9224. </td>
  9225. <td>
  9226. <em>(Optional)</em>
  9227. <p>Previder configures this store to sync secrets using the Previder provider</p>
  9228. </td>
  9229. </tr>
  9230. <tr>
  9231. <td>
  9232. <code>onboardbase</code></br>
  9233. <em>
  9234. <a href="#external-secrets.io/v1.OnboardbaseProvider">
  9235. OnboardbaseProvider
  9236. </a>
  9237. </em>
  9238. </td>
  9239. <td>
  9240. <em>(Optional)</em>
  9241. <p>Onboardbase configures this store to sync secrets using the Onboardbase provider</p>
  9242. </td>
  9243. </tr>
  9244. <tr>
  9245. <td>
  9246. <code>keepersecurity</code></br>
  9247. <em>
  9248. <a href="#external-secrets.io/v1.KeeperSecurityProvider">
  9249. KeeperSecurityProvider
  9250. </a>
  9251. </em>
  9252. </td>
  9253. <td>
  9254. <em>(Optional)</em>
  9255. <p>KeeperSecurity configures this store to sync secrets using the KeeperSecurity provider</p>
  9256. </td>
  9257. </tr>
  9258. <tr>
  9259. <td>
  9260. <code>conjur</code></br>
  9261. <em>
  9262. <a href="#external-secrets.io/v1.ConjurProvider">
  9263. ConjurProvider
  9264. </a>
  9265. </em>
  9266. </td>
  9267. <td>
  9268. <em>(Optional)</em>
  9269. <p>Conjur configures this store to sync secrets using conjur provider</p>
  9270. </td>
  9271. </tr>
  9272. <tr>
  9273. <td>
  9274. <code>delinea</code></br>
  9275. <em>
  9276. <a href="#external-secrets.io/v1.DelineaProvider">
  9277. DelineaProvider
  9278. </a>
  9279. </em>
  9280. </td>
  9281. <td>
  9282. <em>(Optional)</em>
  9283. <p>Delinea DevOps Secrets Vault
  9284. <a href="https://docs.delinea.com/online-help/products/devops-secrets-vault/current">https://docs.delinea.com/online-help/products/devops-secrets-vault/current</a></p>
  9285. </td>
  9286. </tr>
  9287. <tr>
  9288. <td>
  9289. <code>secretserver</code></br>
  9290. <em>
  9291. <a href="#external-secrets.io/v1.SecretServerProvider">
  9292. SecretServerProvider
  9293. </a>
  9294. </em>
  9295. </td>
  9296. <td>
  9297. <em>(Optional)</em>
  9298. <p>SecretServer configures this store to sync secrets using SecretServer provider
  9299. <a href="https://docs.delinea.com/online-help/secret-server/start.htm">https://docs.delinea.com/online-help/secret-server/start.htm</a></p>
  9300. </td>
  9301. </tr>
  9302. <tr>
  9303. <td>
  9304. <code>chef</code></br>
  9305. <em>
  9306. <a href="#external-secrets.io/v1.ChefProvider">
  9307. ChefProvider
  9308. </a>
  9309. </em>
  9310. </td>
  9311. <td>
  9312. <em>(Optional)</em>
  9313. <p>Chef configures this store to sync secrets with chef server</p>
  9314. </td>
  9315. </tr>
  9316. <tr>
  9317. <td>
  9318. <code>pulumi</code></br>
  9319. <em>
  9320. <a href="#external-secrets.io/v1.PulumiProvider">
  9321. PulumiProvider
  9322. </a>
  9323. </em>
  9324. </td>
  9325. <td>
  9326. <em>(Optional)</em>
  9327. <p>Pulumi configures this store to sync secrets using the Pulumi provider</p>
  9328. </td>
  9329. </tr>
  9330. <tr>
  9331. <td>
  9332. <code>fortanix</code></br>
  9333. <em>
  9334. <a href="#external-secrets.io/v1.FortanixProvider">
  9335. FortanixProvider
  9336. </a>
  9337. </em>
  9338. </td>
  9339. <td>
  9340. <em>(Optional)</em>
  9341. <p>Fortanix configures this store to sync secrets using the Fortanix provider</p>
  9342. </td>
  9343. </tr>
  9344. <tr>
  9345. <td>
  9346. <code>passworddepot</code></br>
  9347. <em>
  9348. <a href="#external-secrets.io/v1.PasswordDepotProvider">
  9349. PasswordDepotProvider
  9350. </a>
  9351. </em>
  9352. </td>
  9353. <td>
  9354. <em>(Optional)</em>
  9355. </td>
  9356. </tr>
  9357. <tr>
  9358. <td>
  9359. <code>passbolt</code></br>
  9360. <em>
  9361. <a href="#external-secrets.io/v1.PassboltProvider">
  9362. PassboltProvider
  9363. </a>
  9364. </em>
  9365. </td>
  9366. <td>
  9367. <em>(Optional)</em>
  9368. </td>
  9369. </tr>
  9370. <tr>
  9371. <td>
  9372. <code>device42</code></br>
  9373. <em>
  9374. <a href="#external-secrets.io/v1.Device42Provider">
  9375. Device42Provider
  9376. </a>
  9377. </em>
  9378. </td>
  9379. <td>
  9380. <em>(Optional)</em>
  9381. <p>Device42 configures this store to sync secrets using the Device42 provider</p>
  9382. </td>
  9383. </tr>
  9384. <tr>
  9385. <td>
  9386. <code>infisical</code></br>
  9387. <em>
  9388. <a href="#external-secrets.io/v1.InfisicalProvider">
  9389. InfisicalProvider
  9390. </a>
  9391. </em>
  9392. </td>
  9393. <td>
  9394. <em>(Optional)</em>
  9395. <p>Infisical configures this store to sync secrets using the Infisical provider</p>
  9396. </td>
  9397. </tr>
  9398. <tr>
  9399. <td>
  9400. <code>beyondtrust</code></br>
  9401. <em>
  9402. <a href="#external-secrets.io/v1.BeyondtrustProvider">
  9403. BeyondtrustProvider
  9404. </a>
  9405. </em>
  9406. </td>
  9407. <td>
  9408. <em>(Optional)</em>
  9409. <p>Beyondtrust configures this store to sync secrets using Password Safe provider.</p>
  9410. </td>
  9411. </tr>
  9412. <tr>
  9413. <td>
  9414. <code>cloudrusm</code></br>
  9415. <em>
  9416. <a href="#external-secrets.io/v1.CloudruSMProvider">
  9417. CloudruSMProvider
  9418. </a>
  9419. </em>
  9420. </td>
  9421. <td>
  9422. <em>(Optional)</em>
  9423. <p>CloudruSM configures this store to sync secrets using the Cloud.ru Secret Manager provider</p>
  9424. </td>
  9425. </tr>
  9426. </tbody>
  9427. </table>
  9428. <h3 id="external-secrets.io/v1.SecretStoreRef">SecretStoreRef
  9429. </h3>
  9430. <p>
  9431. (<em>Appears on:</em>
  9432. <a href="#external-secrets.io/v1.ExternalSecretSpec">ExternalSecretSpec</a>,
  9433. <a href="#external-secrets.io/v1.StoreGeneratorSourceRef">StoreGeneratorSourceRef</a>,
  9434. <a href="#external-secrets.io/v1.StoreSourceRef">StoreSourceRef</a>)
  9435. </p>
  9436. <p>
  9437. <p>SecretStoreRef defines which SecretStore to fetch the ExternalSecret data.</p>
  9438. </p>
  9439. <table>
  9440. <thead>
  9441. <tr>
  9442. <th>Field</th>
  9443. <th>Description</th>
  9444. </tr>
  9445. </thead>
  9446. <tbody>
  9447. <tr>
  9448. <td>
  9449. <code>name</code></br>
  9450. <em>
  9451. string
  9452. </em>
  9453. </td>
  9454. <td>
  9455. <p>Name of the SecretStore resource</p>
  9456. </td>
  9457. </tr>
  9458. <tr>
  9459. <td>
  9460. <code>kind</code></br>
  9461. <em>
  9462. string
  9463. </em>
  9464. </td>
  9465. <td>
  9466. <em>(Optional)</em>
  9467. <p>Kind of the SecretStore resource (SecretStore or ClusterSecretStore)
  9468. Defaults to <code>SecretStore</code></p>
  9469. </td>
  9470. </tr>
  9471. </tbody>
  9472. </table>
  9473. <h3 id="external-secrets.io/v1.SecretStoreRetrySettings">SecretStoreRetrySettings
  9474. </h3>
  9475. <p>
  9476. (<em>Appears on:</em>
  9477. <a href="#external-secrets.io/v1.SecretStoreSpec">SecretStoreSpec</a>)
  9478. </p>
  9479. <p>
  9480. </p>
  9481. <table>
  9482. <thead>
  9483. <tr>
  9484. <th>Field</th>
  9485. <th>Description</th>
  9486. </tr>
  9487. </thead>
  9488. <tbody>
  9489. <tr>
  9490. <td>
  9491. <code>maxRetries</code></br>
  9492. <em>
  9493. int32
  9494. </em>
  9495. </td>
  9496. <td>
  9497. </td>
  9498. </tr>
  9499. <tr>
  9500. <td>
  9501. <code>retryInterval</code></br>
  9502. <em>
  9503. string
  9504. </em>
  9505. </td>
  9506. <td>
  9507. </td>
  9508. </tr>
  9509. </tbody>
  9510. </table>
  9511. <h3 id="external-secrets.io/v1.SecretStoreSpec">SecretStoreSpec
  9512. </h3>
  9513. <p>
  9514. (<em>Appears on:</em>
  9515. <a href="#external-secrets.io/v1.ClusterSecretStore">ClusterSecretStore</a>,
  9516. <a href="#external-secrets.io/v1.SecretStore">SecretStore</a>)
  9517. </p>
  9518. <p>
  9519. <p>SecretStoreSpec defines the desired state of SecretStore.</p>
  9520. </p>
  9521. <table>
  9522. <thead>
  9523. <tr>
  9524. <th>Field</th>
  9525. <th>Description</th>
  9526. </tr>
  9527. </thead>
  9528. <tbody>
  9529. <tr>
  9530. <td>
  9531. <code>controller</code></br>
  9532. <em>
  9533. string
  9534. </em>
  9535. </td>
  9536. <td>
  9537. <em>(Optional)</em>
  9538. <p>Used to select the correct ESO controller (think: ingress.ingressClassName)
  9539. The ESO controller is instantiated with a specific controller name and filters ES based on this property</p>
  9540. </td>
  9541. </tr>
  9542. <tr>
  9543. <td>
  9544. <code>provider</code></br>
  9545. <em>
  9546. <a href="#external-secrets.io/v1.SecretStoreProvider">
  9547. SecretStoreProvider
  9548. </a>
  9549. </em>
  9550. </td>
  9551. <td>
  9552. <p>Used to configure the provider. Only one provider may be set</p>
  9553. </td>
  9554. </tr>
  9555. <tr>
  9556. <td>
  9557. <code>retrySettings</code></br>
  9558. <em>
  9559. <a href="#external-secrets.io/v1.SecretStoreRetrySettings">
  9560. SecretStoreRetrySettings
  9561. </a>
  9562. </em>
  9563. </td>
  9564. <td>
  9565. <em>(Optional)</em>
  9566. <p>Used to configure http retries if failed</p>
  9567. </td>
  9568. </tr>
  9569. <tr>
  9570. <td>
  9571. <code>refreshInterval</code></br>
  9572. <em>
  9573. int
  9574. </em>
  9575. </td>
  9576. <td>
  9577. <em>(Optional)</em>
  9578. <p>Used to configure store refresh interval in seconds. Empty or 0 will default to the controller config.</p>
  9579. </td>
  9580. </tr>
  9581. <tr>
  9582. <td>
  9583. <code>conditions</code></br>
  9584. <em>
  9585. <a href="#external-secrets.io/v1.ClusterSecretStoreCondition">
  9586. []ClusterSecretStoreCondition
  9587. </a>
  9588. </em>
  9589. </td>
  9590. <td>
  9591. <em>(Optional)</em>
  9592. <p>Used to constraint a ClusterSecretStore to specific namespaces. Relevant only to ClusterSecretStore</p>
  9593. </td>
  9594. </tr>
  9595. </tbody>
  9596. </table>
  9597. <h3 id="external-secrets.io/v1.SecretStoreStatus">SecretStoreStatus
  9598. </h3>
  9599. <p>
  9600. (<em>Appears on:</em>
  9601. <a href="#external-secrets.io/v1.ClusterSecretStore">ClusterSecretStore</a>,
  9602. <a href="#external-secrets.io/v1.SecretStore">SecretStore</a>)
  9603. </p>
  9604. <p>
  9605. <p>SecretStoreStatus defines the observed state of the SecretStore.</p>
  9606. </p>
  9607. <table>
  9608. <thead>
  9609. <tr>
  9610. <th>Field</th>
  9611. <th>Description</th>
  9612. </tr>
  9613. </thead>
  9614. <tbody>
  9615. <tr>
  9616. <td>
  9617. <code>conditions</code></br>
  9618. <em>
  9619. <a href="#external-secrets.io/v1.SecretStoreStatusCondition">
  9620. []SecretStoreStatusCondition
  9621. </a>
  9622. </em>
  9623. </td>
  9624. <td>
  9625. <em>(Optional)</em>
  9626. </td>
  9627. </tr>
  9628. <tr>
  9629. <td>
  9630. <code>capabilities</code></br>
  9631. <em>
  9632. <a href="#external-secrets.io/v1.SecretStoreCapabilities">
  9633. SecretStoreCapabilities
  9634. </a>
  9635. </em>
  9636. </td>
  9637. <td>
  9638. <em>(Optional)</em>
  9639. </td>
  9640. </tr>
  9641. </tbody>
  9642. </table>
  9643. <h3 id="external-secrets.io/v1.SecretStoreStatusCondition">SecretStoreStatusCondition
  9644. </h3>
  9645. <p>
  9646. (<em>Appears on:</em>
  9647. <a href="#external-secrets.io/v1.SecretStoreStatus">SecretStoreStatus</a>)
  9648. </p>
  9649. <p>
  9650. </p>
  9651. <table>
  9652. <thead>
  9653. <tr>
  9654. <th>Field</th>
  9655. <th>Description</th>
  9656. </tr>
  9657. </thead>
  9658. <tbody>
  9659. <tr>
  9660. <td>
  9661. <code>type</code></br>
  9662. <em>
  9663. <a href="#external-secrets.io/v1.SecretStoreConditionType">
  9664. SecretStoreConditionType
  9665. </a>
  9666. </em>
  9667. </td>
  9668. <td>
  9669. </td>
  9670. </tr>
  9671. <tr>
  9672. <td>
  9673. <code>status</code></br>
  9674. <em>
  9675. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#conditionstatus-v1-core">
  9676. Kubernetes core/v1.ConditionStatus
  9677. </a>
  9678. </em>
  9679. </td>
  9680. <td>
  9681. </td>
  9682. </tr>
  9683. <tr>
  9684. <td>
  9685. <code>reason</code></br>
  9686. <em>
  9687. string
  9688. </em>
  9689. </td>
  9690. <td>
  9691. <em>(Optional)</em>
  9692. </td>
  9693. </tr>
  9694. <tr>
  9695. <td>
  9696. <code>message</code></br>
  9697. <em>
  9698. string
  9699. </em>
  9700. </td>
  9701. <td>
  9702. <em>(Optional)</em>
  9703. </td>
  9704. </tr>
  9705. <tr>
  9706. <td>
  9707. <code>lastTransitionTime</code></br>
  9708. <em>
  9709. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#time-v1-meta">
  9710. Kubernetes meta/v1.Time
  9711. </a>
  9712. </em>
  9713. </td>
  9714. <td>
  9715. <em>(Optional)</em>
  9716. </td>
  9717. </tr>
  9718. </tbody>
  9719. </table>
  9720. <h3 id="external-secrets.io/v1.SecretsClient">SecretsClient
  9721. </h3>
  9722. <p>
  9723. <p>SecretsClient provides access to secrets.</p>
  9724. </p>
  9725. <h3 id="external-secrets.io/v1.SecretsManager">SecretsManager
  9726. </h3>
  9727. <p>
  9728. (<em>Appears on:</em>
  9729. <a href="#external-secrets.io/v1.AWSProvider">AWSProvider</a>)
  9730. </p>
  9731. <p>
  9732. <p>SecretsManager defines how the provider behaves when interacting with AWS
  9733. SecretsManager. Some of these settings are only applicable to controlling how
  9734. secrets are deleted, and hence only apply to PushSecret (and only when
  9735. deletionPolicy is set to Delete).</p>
  9736. </p>
  9737. <table>
  9738. <thead>
  9739. <tr>
  9740. <th>Field</th>
  9741. <th>Description</th>
  9742. </tr>
  9743. </thead>
  9744. <tbody>
  9745. <tr>
  9746. <td>
  9747. <code>forceDeleteWithoutRecovery</code></br>
  9748. <em>
  9749. bool
  9750. </em>
  9751. </td>
  9752. <td>
  9753. <em>(Optional)</em>
  9754. <p>Specifies whether to delete the secret without any recovery window. You
  9755. can&rsquo;t use both this parameter and RecoveryWindowInDays in the same call.
  9756. If you don&rsquo;t use either, then by default Secrets Manager uses a 30 day
  9757. recovery window.
  9758. see: <a href="https://docs.aws.amazon.com/secretsmanager/latest/apireference/API_DeleteSecret.html#SecretsManager-DeleteSecret-request-ForceDeleteWithoutRecovery">https://docs.aws.amazon.com/secretsmanager/latest/apireference/API_DeleteSecret.html#SecretsManager-DeleteSecret-request-ForceDeleteWithoutRecovery</a></p>
  9759. </td>
  9760. </tr>
  9761. <tr>
  9762. <td>
  9763. <code>recoveryWindowInDays</code></br>
  9764. <em>
  9765. int64
  9766. </em>
  9767. </td>
  9768. <td>
  9769. <em>(Optional)</em>
  9770. <p>The number of days from 7 to 30 that Secrets Manager waits before
  9771. permanently deleting the secret. You can&rsquo;t use both this parameter and
  9772. ForceDeleteWithoutRecovery in the same call. If you don&rsquo;t use either,
  9773. then by default Secrets Manager uses a 30 day recovery window.
  9774. see: <a href="https://docs.aws.amazon.com/secretsmanager/latest/apireference/API_DeleteSecret.html#SecretsManager-DeleteSecret-request-RecoveryWindowInDays">https://docs.aws.amazon.com/secretsmanager/latest/apireference/API_DeleteSecret.html#SecretsManager-DeleteSecret-request-RecoveryWindowInDays</a></p>
  9775. </td>
  9776. </tr>
  9777. </tbody>
  9778. </table>
  9779. <h3 id="external-secrets.io/v1.SenhaseguraAuth">SenhaseguraAuth
  9780. </h3>
  9781. <p>
  9782. (<em>Appears on:</em>
  9783. <a href="#external-secrets.io/v1.SenhaseguraProvider">SenhaseguraProvider</a>)
  9784. </p>
  9785. <p>
  9786. <p>SenhaseguraAuth tells the controller how to do auth in senhasegura.</p>
  9787. </p>
  9788. <table>
  9789. <thead>
  9790. <tr>
  9791. <th>Field</th>
  9792. <th>Description</th>
  9793. </tr>
  9794. </thead>
  9795. <tbody>
  9796. <tr>
  9797. <td>
  9798. <code>clientId</code></br>
  9799. <em>
  9800. string
  9801. </em>
  9802. </td>
  9803. <td>
  9804. </td>
  9805. </tr>
  9806. <tr>
  9807. <td>
  9808. <code>clientSecretSecretRef</code></br>
  9809. <em>
  9810. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  9811. External Secrets meta/v1.SecretKeySelector
  9812. </a>
  9813. </em>
  9814. </td>
  9815. <td>
  9816. </td>
  9817. </tr>
  9818. </tbody>
  9819. </table>
  9820. <h3 id="external-secrets.io/v1.SenhaseguraModuleType">SenhaseguraModuleType
  9821. (<code>string</code> alias)</p></h3>
  9822. <p>
  9823. (<em>Appears on:</em>
  9824. <a href="#external-secrets.io/v1.SenhaseguraProvider">SenhaseguraProvider</a>)
  9825. </p>
  9826. <p>
  9827. <p>SenhaseguraModuleType enum defines senhasegura target module to fetch secrets</p>
  9828. </p>
  9829. <table>
  9830. <thead>
  9831. <tr>
  9832. <th>Value</th>
  9833. <th>Description</th>
  9834. </tr>
  9835. </thead>
  9836. <tbody><tr><td><p>&#34;DSM&#34;</p></td>
  9837. <td><pre><code> SenhaseguraModuleDSM is the senhasegura DevOps Secrets Management module
  9838. see: https://senhasegura.com/devops
  9839. </code></pre>
  9840. </td>
  9841. </tr></tbody>
  9842. </table>
  9843. <h3 id="external-secrets.io/v1.SenhaseguraProvider">SenhaseguraProvider
  9844. </h3>
  9845. <p>
  9846. (<em>Appears on:</em>
  9847. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  9848. </p>
  9849. <p>
  9850. <p>SenhaseguraProvider setup a store to sync secrets with senhasegura.</p>
  9851. </p>
  9852. <table>
  9853. <thead>
  9854. <tr>
  9855. <th>Field</th>
  9856. <th>Description</th>
  9857. </tr>
  9858. </thead>
  9859. <tbody>
  9860. <tr>
  9861. <td>
  9862. <code>url</code></br>
  9863. <em>
  9864. string
  9865. </em>
  9866. </td>
  9867. <td>
  9868. <p>URL of senhasegura</p>
  9869. </td>
  9870. </tr>
  9871. <tr>
  9872. <td>
  9873. <code>module</code></br>
  9874. <em>
  9875. <a href="#external-secrets.io/v1.SenhaseguraModuleType">
  9876. SenhaseguraModuleType
  9877. </a>
  9878. </em>
  9879. </td>
  9880. <td>
  9881. <p>Module defines which senhasegura module should be used to get secrets</p>
  9882. </td>
  9883. </tr>
  9884. <tr>
  9885. <td>
  9886. <code>auth</code></br>
  9887. <em>
  9888. <a href="#external-secrets.io/v1.SenhaseguraAuth">
  9889. SenhaseguraAuth
  9890. </a>
  9891. </em>
  9892. </td>
  9893. <td>
  9894. <p>Auth defines parameters to authenticate in senhasegura</p>
  9895. </td>
  9896. </tr>
  9897. <tr>
  9898. <td>
  9899. <code>ignoreSslCertificate</code></br>
  9900. <em>
  9901. bool
  9902. </em>
  9903. </td>
  9904. <td>
  9905. <p>IgnoreSslCertificate defines if SSL certificate must be ignored</p>
  9906. </td>
  9907. </tr>
  9908. </tbody>
  9909. </table>
  9910. <h3 id="external-secrets.io/v1.StoreGeneratorSourceRef">StoreGeneratorSourceRef
  9911. </h3>
  9912. <p>
  9913. (<em>Appears on:</em>
  9914. <a href="#external-secrets.io/v1.ExternalSecretDataFromRemoteRef">ExternalSecretDataFromRemoteRef</a>)
  9915. </p>
  9916. <p>
  9917. <p>StoreGeneratorSourceRef allows you to override the source
  9918. from which the secret will be pulled from.
  9919. You can define at maximum one property.</p>
  9920. </p>
  9921. <table>
  9922. <thead>
  9923. <tr>
  9924. <th>Field</th>
  9925. <th>Description</th>
  9926. </tr>
  9927. </thead>
  9928. <tbody>
  9929. <tr>
  9930. <td>
  9931. <code>storeRef</code></br>
  9932. <em>
  9933. <a href="#external-secrets.io/v1.SecretStoreRef">
  9934. SecretStoreRef
  9935. </a>
  9936. </em>
  9937. </td>
  9938. <td>
  9939. <em>(Optional)</em>
  9940. </td>
  9941. </tr>
  9942. <tr>
  9943. <td>
  9944. <code>generatorRef</code></br>
  9945. <em>
  9946. <a href="#external-secrets.io/v1.GeneratorRef">
  9947. GeneratorRef
  9948. </a>
  9949. </em>
  9950. </td>
  9951. <td>
  9952. <em>(Optional)</em>
  9953. <p>GeneratorRef points to a generator custom resource.</p>
  9954. </td>
  9955. </tr>
  9956. </tbody>
  9957. </table>
  9958. <h3 id="external-secrets.io/v1.StoreSourceRef">StoreSourceRef
  9959. </h3>
  9960. <p>
  9961. (<em>Appears on:</em>
  9962. <a href="#external-secrets.io/v1.ExternalSecretData">ExternalSecretData</a>)
  9963. </p>
  9964. <p>
  9965. <p>StoreSourceRef allows you to override the SecretStore source
  9966. from which the secret will be pulled from.
  9967. You can define at maximum one property.</p>
  9968. </p>
  9969. <table>
  9970. <thead>
  9971. <tr>
  9972. <th>Field</th>
  9973. <th>Description</th>
  9974. </tr>
  9975. </thead>
  9976. <tbody>
  9977. <tr>
  9978. <td>
  9979. <code>storeRef</code></br>
  9980. <em>
  9981. <a href="#external-secrets.io/v1.SecretStoreRef">
  9982. SecretStoreRef
  9983. </a>
  9984. </em>
  9985. </td>
  9986. <td>
  9987. <em>(Optional)</em>
  9988. </td>
  9989. </tr>
  9990. <tr>
  9991. <td>
  9992. <code>generatorRef</code></br>
  9993. <em>
  9994. <a href="#external-secrets.io/v1.GeneratorRef">
  9995. GeneratorRef
  9996. </a>
  9997. </em>
  9998. </td>
  9999. <td>
  10000. <p>GeneratorRef points to a generator custom resource.</p>
  10001. <p>Deprecated: The generatorRef is not implemented in .data[].
  10002. this will be removed with v1.</p>
  10003. </td>
  10004. </tr>
  10005. </tbody>
  10006. </table>
  10007. <h3 id="external-secrets.io/v1.Tag">Tag
  10008. </h3>
  10009. <p>
  10010. </p>
  10011. <table>
  10012. <thead>
  10013. <tr>
  10014. <th>Field</th>
  10015. <th>Description</th>
  10016. </tr>
  10017. </thead>
  10018. <tbody>
  10019. <tr>
  10020. <td>
  10021. <code>key</code></br>
  10022. <em>
  10023. string
  10024. </em>
  10025. </td>
  10026. <td>
  10027. </td>
  10028. </tr>
  10029. <tr>
  10030. <td>
  10031. <code>value</code></br>
  10032. <em>
  10033. string
  10034. </em>
  10035. </td>
  10036. <td>
  10037. </td>
  10038. </tr>
  10039. </tbody>
  10040. </table>
  10041. <h3 id="external-secrets.io/v1.TemplateEngineVersion">TemplateEngineVersion
  10042. (<code>string</code> alias)</p></h3>
  10043. <p>
  10044. (<em>Appears on:</em>
  10045. <a href="#external-secrets.io/v1.ExternalSecretTemplate">ExternalSecretTemplate</a>)
  10046. </p>
  10047. <p>
  10048. </p>
  10049. <table>
  10050. <thead>
  10051. <tr>
  10052. <th>Value</th>
  10053. <th>Description</th>
  10054. </tr>
  10055. </thead>
  10056. <tbody><tr><td><p>&#34;v2&#34;</p></td>
  10057. <td></td>
  10058. </tr></tbody>
  10059. </table>
  10060. <h3 id="external-secrets.io/v1.TemplateFrom">TemplateFrom
  10061. </h3>
  10062. <p>
  10063. (<em>Appears on:</em>
  10064. <a href="#external-secrets.io/v1.ExternalSecretTemplate">ExternalSecretTemplate</a>)
  10065. </p>
  10066. <p>
  10067. </p>
  10068. <table>
  10069. <thead>
  10070. <tr>
  10071. <th>Field</th>
  10072. <th>Description</th>
  10073. </tr>
  10074. </thead>
  10075. <tbody>
  10076. <tr>
  10077. <td>
  10078. <code>configMap</code></br>
  10079. <em>
  10080. <a href="#external-secrets.io/v1.TemplateRef">
  10081. TemplateRef
  10082. </a>
  10083. </em>
  10084. </td>
  10085. <td>
  10086. </td>
  10087. </tr>
  10088. <tr>
  10089. <td>
  10090. <code>secret</code></br>
  10091. <em>
  10092. <a href="#external-secrets.io/v1.TemplateRef">
  10093. TemplateRef
  10094. </a>
  10095. </em>
  10096. </td>
  10097. <td>
  10098. </td>
  10099. </tr>
  10100. <tr>
  10101. <td>
  10102. <code>target</code></br>
  10103. <em>
  10104. <a href="#external-secrets.io/v1.TemplateTarget">
  10105. TemplateTarget
  10106. </a>
  10107. </em>
  10108. </td>
  10109. <td>
  10110. <em>(Optional)</em>
  10111. </td>
  10112. </tr>
  10113. <tr>
  10114. <td>
  10115. <code>literal</code></br>
  10116. <em>
  10117. string
  10118. </em>
  10119. </td>
  10120. <td>
  10121. <em>(Optional)</em>
  10122. </td>
  10123. </tr>
  10124. </tbody>
  10125. </table>
  10126. <h3 id="external-secrets.io/v1.TemplateMergePolicy">TemplateMergePolicy
  10127. (<code>string</code> alias)</p></h3>
  10128. <p>
  10129. (<em>Appears on:</em>
  10130. <a href="#external-secrets.io/v1.ExternalSecretTemplate">ExternalSecretTemplate</a>)
  10131. </p>
  10132. <p>
  10133. </p>
  10134. <table>
  10135. <thead>
  10136. <tr>
  10137. <th>Value</th>
  10138. <th>Description</th>
  10139. </tr>
  10140. </thead>
  10141. <tbody><tr><td><p>&#34;Merge&#34;</p></td>
  10142. <td></td>
  10143. </tr><tr><td><p>&#34;Replace&#34;</p></td>
  10144. <td></td>
  10145. </tr></tbody>
  10146. </table>
  10147. <h3 id="external-secrets.io/v1.TemplateRef">TemplateRef
  10148. </h3>
  10149. <p>
  10150. (<em>Appears on:</em>
  10151. <a href="#external-secrets.io/v1.TemplateFrom">TemplateFrom</a>)
  10152. </p>
  10153. <p>
  10154. </p>
  10155. <table>
  10156. <thead>
  10157. <tr>
  10158. <th>Field</th>
  10159. <th>Description</th>
  10160. </tr>
  10161. </thead>
  10162. <tbody>
  10163. <tr>
  10164. <td>
  10165. <code>name</code></br>
  10166. <em>
  10167. string
  10168. </em>
  10169. </td>
  10170. <td>
  10171. <p>The name of the ConfigMap/Secret resource</p>
  10172. </td>
  10173. </tr>
  10174. <tr>
  10175. <td>
  10176. <code>items</code></br>
  10177. <em>
  10178. <a href="#external-secrets.io/v1.TemplateRefItem">
  10179. []TemplateRefItem
  10180. </a>
  10181. </em>
  10182. </td>
  10183. <td>
  10184. <p>A list of keys in the ConfigMap/Secret to use as templates for Secret data</p>
  10185. </td>
  10186. </tr>
  10187. </tbody>
  10188. </table>
  10189. <h3 id="external-secrets.io/v1.TemplateRefItem">TemplateRefItem
  10190. </h3>
  10191. <p>
  10192. (<em>Appears on:</em>
  10193. <a href="#external-secrets.io/v1.TemplateRef">TemplateRef</a>)
  10194. </p>
  10195. <p>
  10196. </p>
  10197. <table>
  10198. <thead>
  10199. <tr>
  10200. <th>Field</th>
  10201. <th>Description</th>
  10202. </tr>
  10203. </thead>
  10204. <tbody>
  10205. <tr>
  10206. <td>
  10207. <code>key</code></br>
  10208. <em>
  10209. string
  10210. </em>
  10211. </td>
  10212. <td>
  10213. <p>A key in the ConfigMap/Secret</p>
  10214. </td>
  10215. </tr>
  10216. <tr>
  10217. <td>
  10218. <code>templateAs</code></br>
  10219. <em>
  10220. <a href="#external-secrets.io/v1.TemplateScope">
  10221. TemplateScope
  10222. </a>
  10223. </em>
  10224. </td>
  10225. <td>
  10226. </td>
  10227. </tr>
  10228. </tbody>
  10229. </table>
  10230. <h3 id="external-secrets.io/v1.TemplateScope">TemplateScope
  10231. (<code>string</code> alias)</p></h3>
  10232. <p>
  10233. (<em>Appears on:</em>
  10234. <a href="#external-secrets.io/v1.TemplateRefItem">TemplateRefItem</a>)
  10235. </p>
  10236. <p>
  10237. </p>
  10238. <table>
  10239. <thead>
  10240. <tr>
  10241. <th>Value</th>
  10242. <th>Description</th>
  10243. </tr>
  10244. </thead>
  10245. <tbody><tr><td><p>&#34;KeysAndValues&#34;</p></td>
  10246. <td></td>
  10247. </tr><tr><td><p>&#34;Values&#34;</p></td>
  10248. <td></td>
  10249. </tr></tbody>
  10250. </table>
  10251. <h3 id="external-secrets.io/v1.TemplateTarget">TemplateTarget
  10252. (<code>string</code> alias)</p></h3>
  10253. <p>
  10254. (<em>Appears on:</em>
  10255. <a href="#external-secrets.io/v1.TemplateFrom">TemplateFrom</a>)
  10256. </p>
  10257. <p>
  10258. </p>
  10259. <table>
  10260. <thead>
  10261. <tr>
  10262. <th>Value</th>
  10263. <th>Description</th>
  10264. </tr>
  10265. </thead>
  10266. <tbody><tr><td><p>&#34;Annotations&#34;</p></td>
  10267. <td></td>
  10268. </tr><tr><td><p>&#34;Data&#34;</p></td>
  10269. <td></td>
  10270. </tr><tr><td><p>&#34;Labels&#34;</p></td>
  10271. <td></td>
  10272. </tr></tbody>
  10273. </table>
  10274. <h3 id="external-secrets.io/v1.TokenAuth">TokenAuth
  10275. </h3>
  10276. <p>
  10277. (<em>Appears on:</em>
  10278. <a href="#external-secrets.io/v1.KubernetesAuth">KubernetesAuth</a>)
  10279. </p>
  10280. <p>
  10281. </p>
  10282. <table>
  10283. <thead>
  10284. <tr>
  10285. <th>Field</th>
  10286. <th>Description</th>
  10287. </tr>
  10288. </thead>
  10289. <tbody>
  10290. <tr>
  10291. <td>
  10292. <code>bearerToken</code></br>
  10293. <em>
  10294. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  10295. External Secrets meta/v1.SecretKeySelector
  10296. </a>
  10297. </em>
  10298. </td>
  10299. <td>
  10300. </td>
  10301. </tr>
  10302. </tbody>
  10303. </table>
  10304. <h3 id="external-secrets.io/v1.UniversalAuthCredentials">UniversalAuthCredentials
  10305. </h3>
  10306. <p>
  10307. (<em>Appears on:</em>
  10308. <a href="#external-secrets.io/v1.InfisicalAuth">InfisicalAuth</a>)
  10309. </p>
  10310. <p>
  10311. </p>
  10312. <table>
  10313. <thead>
  10314. <tr>
  10315. <th>Field</th>
  10316. <th>Description</th>
  10317. </tr>
  10318. </thead>
  10319. <tbody>
  10320. <tr>
  10321. <td>
  10322. <code>clientId</code></br>
  10323. <em>
  10324. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  10325. External Secrets meta/v1.SecretKeySelector
  10326. </a>
  10327. </em>
  10328. </td>
  10329. <td>
  10330. </td>
  10331. </tr>
  10332. <tr>
  10333. <td>
  10334. <code>clientSecret</code></br>
  10335. <em>
  10336. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  10337. External Secrets meta/v1.SecretKeySelector
  10338. </a>
  10339. </em>
  10340. </td>
  10341. <td>
  10342. </td>
  10343. </tr>
  10344. </tbody>
  10345. </table>
  10346. <h3 id="external-secrets.io/v1.ValidationResult">ValidationResult
  10347. (<code>byte</code> alias)</p></h3>
  10348. <p>
  10349. </p>
  10350. <table>
  10351. <thead>
  10352. <tr>
  10353. <th>Value</th>
  10354. <th>Description</th>
  10355. </tr>
  10356. </thead>
  10357. <tbody><tr><td><p>2</p></td>
  10358. <td><p>Error indicates that there is a misconfiguration.</p>
  10359. </td>
  10360. </tr><tr><td><p>0</p></td>
  10361. <td><p>Ready indicates that the client is configured correctly
  10362. and can be used.</p>
  10363. </td>
  10364. </tr><tr><td><p>1</p></td>
  10365. <td><p>Unknown indicates that the client can be used
  10366. but information is missing and it can not be validated.</p>
  10367. </td>
  10368. </tr></tbody>
  10369. </table>
  10370. <h3 id="external-secrets.io/v1.VaultAppRole">VaultAppRole
  10371. </h3>
  10372. <p>
  10373. (<em>Appears on:</em>
  10374. <a href="#external-secrets.io/v1.VaultAuth">VaultAuth</a>)
  10375. </p>
  10376. <p>
  10377. <p>VaultAppRole authenticates with Vault using the App Role auth mechanism,
  10378. with the role and secret stored in a Kubernetes Secret resource.</p>
  10379. </p>
  10380. <table>
  10381. <thead>
  10382. <tr>
  10383. <th>Field</th>
  10384. <th>Description</th>
  10385. </tr>
  10386. </thead>
  10387. <tbody>
  10388. <tr>
  10389. <td>
  10390. <code>path</code></br>
  10391. <em>
  10392. string
  10393. </em>
  10394. </td>
  10395. <td>
  10396. <p>Path where the App Role authentication backend is mounted
  10397. in Vault, e.g: &ldquo;approle&rdquo;</p>
  10398. </td>
  10399. </tr>
  10400. <tr>
  10401. <td>
  10402. <code>roleId</code></br>
  10403. <em>
  10404. string
  10405. </em>
  10406. </td>
  10407. <td>
  10408. <em>(Optional)</em>
  10409. <p>RoleID configured in the App Role authentication backend when setting
  10410. up the authentication backend in Vault.</p>
  10411. </td>
  10412. </tr>
  10413. <tr>
  10414. <td>
  10415. <code>roleRef</code></br>
  10416. <em>
  10417. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  10418. External Secrets meta/v1.SecretKeySelector
  10419. </a>
  10420. </em>
  10421. </td>
  10422. <td>
  10423. <em>(Optional)</em>
  10424. <p>Reference to a key in a Secret that contains the App Role ID used
  10425. to authenticate with Vault.
  10426. The <code>key</code> field must be specified and denotes which entry within the Secret
  10427. resource is used as the app role id.</p>
  10428. </td>
  10429. </tr>
  10430. <tr>
  10431. <td>
  10432. <code>secretRef</code></br>
  10433. <em>
  10434. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  10435. External Secrets meta/v1.SecretKeySelector
  10436. </a>
  10437. </em>
  10438. </td>
  10439. <td>
  10440. <p>Reference to a key in a Secret that contains the App Role secret used
  10441. to authenticate with Vault.
  10442. The <code>key</code> field must be specified and denotes which entry within the Secret
  10443. resource is used as the app role secret.</p>
  10444. </td>
  10445. </tr>
  10446. </tbody>
  10447. </table>
  10448. <h3 id="external-secrets.io/v1.VaultAuth">VaultAuth
  10449. </h3>
  10450. <p>
  10451. (<em>Appears on:</em>
  10452. <a href="#external-secrets.io/v1.VaultProvider">VaultProvider</a>)
  10453. </p>
  10454. <p>
  10455. <p>VaultAuth is the configuration used to authenticate with a Vault server.
  10456. Only one of <code>tokenSecretRef</code>, <code>appRole</code>, <code>kubernetes</code>, <code>ldap</code>, <code>userPass</code>, <code>jwt</code> or <code>cert</code>
  10457. can be specified. A namespace to authenticate against can optionally be specified.</p>
  10458. </p>
  10459. <table>
  10460. <thead>
  10461. <tr>
  10462. <th>Field</th>
  10463. <th>Description</th>
  10464. </tr>
  10465. </thead>
  10466. <tbody>
  10467. <tr>
  10468. <td>
  10469. <code>namespace</code></br>
  10470. <em>
  10471. string
  10472. </em>
  10473. </td>
  10474. <td>
  10475. <em>(Optional)</em>
  10476. <p>Name of the vault namespace to authenticate to. This can be different than the namespace your secret is in.
  10477. Namespaces is a set of features within Vault Enterprise that allows
  10478. Vault environments to support Secure Multi-tenancy. e.g: &ldquo;ns1&rdquo;.
  10479. More about namespaces can be found here <a href="https://www.vaultproject.io/docs/enterprise/namespaces">https://www.vaultproject.io/docs/enterprise/namespaces</a>
  10480. This will default to Vault.Namespace field if set, or empty otherwise</p>
  10481. </td>
  10482. </tr>
  10483. <tr>
  10484. <td>
  10485. <code>tokenSecretRef</code></br>
  10486. <em>
  10487. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  10488. External Secrets meta/v1.SecretKeySelector
  10489. </a>
  10490. </em>
  10491. </td>
  10492. <td>
  10493. <em>(Optional)</em>
  10494. <p>TokenSecretRef authenticates with Vault by presenting a token.</p>
  10495. </td>
  10496. </tr>
  10497. <tr>
  10498. <td>
  10499. <code>appRole</code></br>
  10500. <em>
  10501. <a href="#external-secrets.io/v1.VaultAppRole">
  10502. VaultAppRole
  10503. </a>
  10504. </em>
  10505. </td>
  10506. <td>
  10507. <em>(Optional)</em>
  10508. <p>AppRole authenticates with Vault using the App Role auth mechanism,
  10509. with the role and secret stored in a Kubernetes Secret resource.</p>
  10510. </td>
  10511. </tr>
  10512. <tr>
  10513. <td>
  10514. <code>kubernetes</code></br>
  10515. <em>
  10516. <a href="#external-secrets.io/v1.VaultKubernetesAuth">
  10517. VaultKubernetesAuth
  10518. </a>
  10519. </em>
  10520. </td>
  10521. <td>
  10522. <em>(Optional)</em>
  10523. <p>Kubernetes authenticates with Vault by passing the ServiceAccount
  10524. token stored in the named Secret resource to the Vault server.</p>
  10525. </td>
  10526. </tr>
  10527. <tr>
  10528. <td>
  10529. <code>ldap</code></br>
  10530. <em>
  10531. <a href="#external-secrets.io/v1.VaultLdapAuth">
  10532. VaultLdapAuth
  10533. </a>
  10534. </em>
  10535. </td>
  10536. <td>
  10537. <em>(Optional)</em>
  10538. <p>Ldap authenticates with Vault by passing username/password pair using
  10539. the LDAP authentication method</p>
  10540. </td>
  10541. </tr>
  10542. <tr>
  10543. <td>
  10544. <code>jwt</code></br>
  10545. <em>
  10546. <a href="#external-secrets.io/v1.VaultJwtAuth">
  10547. VaultJwtAuth
  10548. </a>
  10549. </em>
  10550. </td>
  10551. <td>
  10552. <em>(Optional)</em>
  10553. <p>Jwt authenticates with Vault by passing role and JWT token using the
  10554. JWT/OIDC authentication method</p>
  10555. </td>
  10556. </tr>
  10557. <tr>
  10558. <td>
  10559. <code>cert</code></br>
  10560. <em>
  10561. <a href="#external-secrets.io/v1.VaultCertAuth">
  10562. VaultCertAuth
  10563. </a>
  10564. </em>
  10565. </td>
  10566. <td>
  10567. <em>(Optional)</em>
  10568. <p>Cert authenticates with TLS Certificates by passing client certificate, private key and ca certificate
  10569. Cert authentication method</p>
  10570. </td>
  10571. </tr>
  10572. <tr>
  10573. <td>
  10574. <code>iam</code></br>
  10575. <em>
  10576. <a href="#external-secrets.io/v1.VaultIamAuth">
  10577. VaultIamAuth
  10578. </a>
  10579. </em>
  10580. </td>
  10581. <td>
  10582. <em>(Optional)</em>
  10583. <p>Iam authenticates with vault by passing a special AWS request signed with AWS IAM credentials
  10584. AWS IAM authentication method</p>
  10585. </td>
  10586. </tr>
  10587. <tr>
  10588. <td>
  10589. <code>userPass</code></br>
  10590. <em>
  10591. <a href="#external-secrets.io/v1.VaultUserPassAuth">
  10592. VaultUserPassAuth
  10593. </a>
  10594. </em>
  10595. </td>
  10596. <td>
  10597. <em>(Optional)</em>
  10598. <p>UserPass authenticates with Vault by passing username/password pair</p>
  10599. </td>
  10600. </tr>
  10601. </tbody>
  10602. </table>
  10603. <h3 id="external-secrets.io/v1.VaultAwsAuth">VaultAwsAuth
  10604. </h3>
  10605. <p>
  10606. <p>VaultAwsAuth tells the controller how to do authentication with aws.
  10607. Only one of secretRef or jwt can be specified.
  10608. if none is specified the controller will try to load credentials from its own service account assuming it is IRSA enabled.</p>
  10609. </p>
  10610. <table>
  10611. <thead>
  10612. <tr>
  10613. <th>Field</th>
  10614. <th>Description</th>
  10615. </tr>
  10616. </thead>
  10617. <tbody>
  10618. <tr>
  10619. <td>
  10620. <code>secretRef</code></br>
  10621. <em>
  10622. <a href="#external-secrets.io/v1.VaultAwsAuthSecretRef">
  10623. VaultAwsAuthSecretRef
  10624. </a>
  10625. </em>
  10626. </td>
  10627. <td>
  10628. <em>(Optional)</em>
  10629. </td>
  10630. </tr>
  10631. <tr>
  10632. <td>
  10633. <code>jwt</code></br>
  10634. <em>
  10635. <a href="#external-secrets.io/v1.VaultAwsJWTAuth">
  10636. VaultAwsJWTAuth
  10637. </a>
  10638. </em>
  10639. </td>
  10640. <td>
  10641. <em>(Optional)</em>
  10642. </td>
  10643. </tr>
  10644. </tbody>
  10645. </table>
  10646. <h3 id="external-secrets.io/v1.VaultAwsAuthSecretRef">VaultAwsAuthSecretRef
  10647. </h3>
  10648. <p>
  10649. (<em>Appears on:</em>
  10650. <a href="#external-secrets.io/v1.VaultAwsAuth">VaultAwsAuth</a>,
  10651. <a href="#external-secrets.io/v1.VaultIamAuth">VaultIamAuth</a>)
  10652. </p>
  10653. <p>
  10654. <p>VaultAWSAuthSecretRef holds secret references for AWS credentials
  10655. both AccessKeyID and SecretAccessKey must be defined in order to properly authenticate.</p>
  10656. </p>
  10657. <table>
  10658. <thead>
  10659. <tr>
  10660. <th>Field</th>
  10661. <th>Description</th>
  10662. </tr>
  10663. </thead>
  10664. <tbody>
  10665. <tr>
  10666. <td>
  10667. <code>accessKeyIDSecretRef</code></br>
  10668. <em>
  10669. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  10670. External Secrets meta/v1.SecretKeySelector
  10671. </a>
  10672. </em>
  10673. </td>
  10674. <td>
  10675. <em>(Optional)</em>
  10676. <p>The AccessKeyID is used for authentication</p>
  10677. </td>
  10678. </tr>
  10679. <tr>
  10680. <td>
  10681. <code>secretAccessKeySecretRef</code></br>
  10682. <em>
  10683. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  10684. External Secrets meta/v1.SecretKeySelector
  10685. </a>
  10686. </em>
  10687. </td>
  10688. <td>
  10689. <em>(Optional)</em>
  10690. <p>The SecretAccessKey is used for authentication</p>
  10691. </td>
  10692. </tr>
  10693. <tr>
  10694. <td>
  10695. <code>sessionTokenSecretRef</code></br>
  10696. <em>
  10697. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  10698. External Secrets meta/v1.SecretKeySelector
  10699. </a>
  10700. </em>
  10701. </td>
  10702. <td>
  10703. <em>(Optional)</em>
  10704. <p>The SessionToken used for authentication
  10705. This must be defined if AccessKeyID and SecretAccessKey are temporary credentials
  10706. see: <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_use-resources.html">https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_use-resources.html</a></p>
  10707. </td>
  10708. </tr>
  10709. </tbody>
  10710. </table>
  10711. <h3 id="external-secrets.io/v1.VaultAwsJWTAuth">VaultAwsJWTAuth
  10712. </h3>
  10713. <p>
  10714. (<em>Appears on:</em>
  10715. <a href="#external-secrets.io/v1.VaultAwsAuth">VaultAwsAuth</a>,
  10716. <a href="#external-secrets.io/v1.VaultIamAuth">VaultIamAuth</a>)
  10717. </p>
  10718. <p>
  10719. <p>VaultAwsJWTAuth Authenticate against AWS using service account tokens.</p>
  10720. </p>
  10721. <table>
  10722. <thead>
  10723. <tr>
  10724. <th>Field</th>
  10725. <th>Description</th>
  10726. </tr>
  10727. </thead>
  10728. <tbody>
  10729. <tr>
  10730. <td>
  10731. <code>serviceAccountRef</code></br>
  10732. <em>
  10733. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  10734. External Secrets meta/v1.ServiceAccountSelector
  10735. </a>
  10736. </em>
  10737. </td>
  10738. <td>
  10739. <em>(Optional)</em>
  10740. </td>
  10741. </tr>
  10742. </tbody>
  10743. </table>
  10744. <h3 id="external-secrets.io/v1.VaultCertAuth">VaultCertAuth
  10745. </h3>
  10746. <p>
  10747. (<em>Appears on:</em>
  10748. <a href="#external-secrets.io/v1.VaultAuth">VaultAuth</a>)
  10749. </p>
  10750. <p>
  10751. <p>VaultCertAuth authenticates with Vault using the JWT/OIDC authentication
  10752. method, with the role name and token stored in a Kubernetes Secret resource.</p>
  10753. </p>
  10754. <table>
  10755. <thead>
  10756. <tr>
  10757. <th>Field</th>
  10758. <th>Description</th>
  10759. </tr>
  10760. </thead>
  10761. <tbody>
  10762. <tr>
  10763. <td>
  10764. <code>clientCert</code></br>
  10765. <em>
  10766. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  10767. External Secrets meta/v1.SecretKeySelector
  10768. </a>
  10769. </em>
  10770. </td>
  10771. <td>
  10772. <em>(Optional)</em>
  10773. <p>ClientCert is a certificate to authenticate using the Cert Vault
  10774. authentication method</p>
  10775. </td>
  10776. </tr>
  10777. <tr>
  10778. <td>
  10779. <code>secretRef</code></br>
  10780. <em>
  10781. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  10782. External Secrets meta/v1.SecretKeySelector
  10783. </a>
  10784. </em>
  10785. </td>
  10786. <td>
  10787. <em>(Optional)</em>
  10788. <p>SecretRef to a key in a Secret resource containing client private key to
  10789. authenticate with Vault using the Cert authentication method</p>
  10790. </td>
  10791. </tr>
  10792. </tbody>
  10793. </table>
  10794. <h3 id="external-secrets.io/v1.VaultClientTLS">VaultClientTLS
  10795. </h3>
  10796. <p>
  10797. (<em>Appears on:</em>
  10798. <a href="#external-secrets.io/v1.VaultProvider">VaultProvider</a>)
  10799. </p>
  10800. <p>
  10801. <p>VaultClientTLS is the configuration used for client side related TLS communication,
  10802. when the Vault server requires mutual authentication.</p>
  10803. </p>
  10804. <table>
  10805. <thead>
  10806. <tr>
  10807. <th>Field</th>
  10808. <th>Description</th>
  10809. </tr>
  10810. </thead>
  10811. <tbody>
  10812. <tr>
  10813. <td>
  10814. <code>certSecretRef</code></br>
  10815. <em>
  10816. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  10817. External Secrets meta/v1.SecretKeySelector
  10818. </a>
  10819. </em>
  10820. </td>
  10821. <td>
  10822. <em>(Optional)</em>
  10823. <p>CertSecretRef is a certificate added to the transport layer
  10824. when communicating with the Vault server.
  10825. If no key for the Secret is specified, external-secret will default to &lsquo;tls.crt&rsquo;.</p>
  10826. </td>
  10827. </tr>
  10828. <tr>
  10829. <td>
  10830. <code>keySecretRef</code></br>
  10831. <em>
  10832. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  10833. External Secrets meta/v1.SecretKeySelector
  10834. </a>
  10835. </em>
  10836. </td>
  10837. <td>
  10838. <em>(Optional)</em>
  10839. <p>KeySecretRef to a key in a Secret resource containing client private key
  10840. added to the transport layer when communicating with the Vault server.
  10841. If no key for the Secret is specified, external-secret will default to &lsquo;tls.key&rsquo;.</p>
  10842. </td>
  10843. </tr>
  10844. </tbody>
  10845. </table>
  10846. <h3 id="external-secrets.io/v1.VaultIamAuth">VaultIamAuth
  10847. </h3>
  10848. <p>
  10849. (<em>Appears on:</em>
  10850. <a href="#external-secrets.io/v1.VaultAuth">VaultAuth</a>)
  10851. </p>
  10852. <p>
  10853. <p>VaultIamAuth authenticates with Vault using the Vault&rsquo;s AWS IAM authentication method. Refer: <a href="https://developer.hashicorp.com/vault/docs/auth/aws">https://developer.hashicorp.com/vault/docs/auth/aws</a></p>
  10854. </p>
  10855. <table>
  10856. <thead>
  10857. <tr>
  10858. <th>Field</th>
  10859. <th>Description</th>
  10860. </tr>
  10861. </thead>
  10862. <tbody>
  10863. <tr>
  10864. <td>
  10865. <code>path</code></br>
  10866. <em>
  10867. string
  10868. </em>
  10869. </td>
  10870. <td>
  10871. <em>(Optional)</em>
  10872. <p>Path where the AWS auth method is enabled in Vault, e.g: &ldquo;aws&rdquo;</p>
  10873. </td>
  10874. </tr>
  10875. <tr>
  10876. <td>
  10877. <code>region</code></br>
  10878. <em>
  10879. string
  10880. </em>
  10881. </td>
  10882. <td>
  10883. <em>(Optional)</em>
  10884. <p>AWS region</p>
  10885. </td>
  10886. </tr>
  10887. <tr>
  10888. <td>
  10889. <code>role</code></br>
  10890. <em>
  10891. string
  10892. </em>
  10893. </td>
  10894. <td>
  10895. <em>(Optional)</em>
  10896. <p>This is the AWS role to be assumed before talking to vault</p>
  10897. </td>
  10898. </tr>
  10899. <tr>
  10900. <td>
  10901. <code>vaultRole</code></br>
  10902. <em>
  10903. string
  10904. </em>
  10905. </td>
  10906. <td>
  10907. <p>Vault Role. In vault, a role describes an identity with a set of permissions, groups, or policies you want to attach a user of the secrets engine</p>
  10908. </td>
  10909. </tr>
  10910. <tr>
  10911. <td>
  10912. <code>externalID</code></br>
  10913. <em>
  10914. string
  10915. </em>
  10916. </td>
  10917. <td>
  10918. <p>AWS External ID set on assumed IAM roles</p>
  10919. </td>
  10920. </tr>
  10921. <tr>
  10922. <td>
  10923. <code>vaultAwsIamServerID</code></br>
  10924. <em>
  10925. string
  10926. </em>
  10927. </td>
  10928. <td>
  10929. <em>(Optional)</em>
  10930. <p>X-Vault-AWS-IAM-Server-ID is an additional header used by Vault IAM auth method to mitigate against different types of replay attacks. More details here: <a href="https://developer.hashicorp.com/vault/docs/auth/aws">https://developer.hashicorp.com/vault/docs/auth/aws</a></p>
  10931. </td>
  10932. </tr>
  10933. <tr>
  10934. <td>
  10935. <code>secretRef</code></br>
  10936. <em>
  10937. <a href="#external-secrets.io/v1.VaultAwsAuthSecretRef">
  10938. VaultAwsAuthSecretRef
  10939. </a>
  10940. </em>
  10941. </td>
  10942. <td>
  10943. <em>(Optional)</em>
  10944. <p>Specify credentials in a Secret object</p>
  10945. </td>
  10946. </tr>
  10947. <tr>
  10948. <td>
  10949. <code>jwt</code></br>
  10950. <em>
  10951. <a href="#external-secrets.io/v1.VaultAwsJWTAuth">
  10952. VaultAwsJWTAuth
  10953. </a>
  10954. </em>
  10955. </td>
  10956. <td>
  10957. <em>(Optional)</em>
  10958. <p>Specify a service account with IRSA enabled</p>
  10959. </td>
  10960. </tr>
  10961. </tbody>
  10962. </table>
  10963. <h3 id="external-secrets.io/v1.VaultJwtAuth">VaultJwtAuth
  10964. </h3>
  10965. <p>
  10966. (<em>Appears on:</em>
  10967. <a href="#external-secrets.io/v1.VaultAuth">VaultAuth</a>)
  10968. </p>
  10969. <p>
  10970. <p>VaultJwtAuth authenticates with Vault using the JWT/OIDC authentication
  10971. method, with the role name and a token stored in a Kubernetes Secret resource or
  10972. a Kubernetes service account token retrieved via <code>TokenRequest</code>.</p>
  10973. </p>
  10974. <table>
  10975. <thead>
  10976. <tr>
  10977. <th>Field</th>
  10978. <th>Description</th>
  10979. </tr>
  10980. </thead>
  10981. <tbody>
  10982. <tr>
  10983. <td>
  10984. <code>path</code></br>
  10985. <em>
  10986. string
  10987. </em>
  10988. </td>
  10989. <td>
  10990. <p>Path where the JWT authentication backend is mounted
  10991. in Vault, e.g: &ldquo;jwt&rdquo;</p>
  10992. </td>
  10993. </tr>
  10994. <tr>
  10995. <td>
  10996. <code>role</code></br>
  10997. <em>
  10998. string
  10999. </em>
  11000. </td>
  11001. <td>
  11002. <em>(Optional)</em>
  11003. <p>Role is a JWT role to authenticate using the JWT/OIDC Vault
  11004. authentication method</p>
  11005. </td>
  11006. </tr>
  11007. <tr>
  11008. <td>
  11009. <code>secretRef</code></br>
  11010. <em>
  11011. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  11012. External Secrets meta/v1.SecretKeySelector
  11013. </a>
  11014. </em>
  11015. </td>
  11016. <td>
  11017. <em>(Optional)</em>
  11018. <p>Optional SecretRef that refers to a key in a Secret resource containing JWT token to
  11019. authenticate with Vault using the JWT/OIDC authentication method.</p>
  11020. </td>
  11021. </tr>
  11022. <tr>
  11023. <td>
  11024. <code>kubernetesServiceAccountToken</code></br>
  11025. <em>
  11026. <a href="#external-secrets.io/v1.VaultKubernetesServiceAccountTokenAuth">
  11027. VaultKubernetesServiceAccountTokenAuth
  11028. </a>
  11029. </em>
  11030. </td>
  11031. <td>
  11032. <em>(Optional)</em>
  11033. <p>Optional ServiceAccountToken specifies the Kubernetes service account for which to request
  11034. a token for with the <code>TokenRequest</code> API.</p>
  11035. </td>
  11036. </tr>
  11037. </tbody>
  11038. </table>
  11039. <h3 id="external-secrets.io/v1.VaultKVStoreVersion">VaultKVStoreVersion
  11040. (<code>string</code> alias)</p></h3>
  11041. <p>
  11042. (<em>Appears on:</em>
  11043. <a href="#external-secrets.io/v1.VaultProvider">VaultProvider</a>)
  11044. </p>
  11045. <p>
  11046. </p>
  11047. <table>
  11048. <thead>
  11049. <tr>
  11050. <th>Value</th>
  11051. <th>Description</th>
  11052. </tr>
  11053. </thead>
  11054. <tbody><tr><td><p>&#34;v1&#34;</p></td>
  11055. <td></td>
  11056. </tr><tr><td><p>&#34;v2&#34;</p></td>
  11057. <td></td>
  11058. </tr></tbody>
  11059. </table>
  11060. <h3 id="external-secrets.io/v1.VaultKubernetesAuth">VaultKubernetesAuth
  11061. </h3>
  11062. <p>
  11063. (<em>Appears on:</em>
  11064. <a href="#external-secrets.io/v1.VaultAuth">VaultAuth</a>)
  11065. </p>
  11066. <p>
  11067. <p>Authenticate against Vault using a Kubernetes ServiceAccount token stored in
  11068. a Secret.</p>
  11069. </p>
  11070. <table>
  11071. <thead>
  11072. <tr>
  11073. <th>Field</th>
  11074. <th>Description</th>
  11075. </tr>
  11076. </thead>
  11077. <tbody>
  11078. <tr>
  11079. <td>
  11080. <code>mountPath</code></br>
  11081. <em>
  11082. string
  11083. </em>
  11084. </td>
  11085. <td>
  11086. <p>Path where the Kubernetes authentication backend is mounted in Vault, e.g:
  11087. &ldquo;kubernetes&rdquo;</p>
  11088. </td>
  11089. </tr>
  11090. <tr>
  11091. <td>
  11092. <code>serviceAccountRef</code></br>
  11093. <em>
  11094. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  11095. External Secrets meta/v1.ServiceAccountSelector
  11096. </a>
  11097. </em>
  11098. </td>
  11099. <td>
  11100. <em>(Optional)</em>
  11101. <p>Optional service account field containing the name of a kubernetes ServiceAccount.
  11102. If the service account is specified, the service account secret token JWT will be used
  11103. for authenticating with Vault. If the service account selector is not supplied,
  11104. the secretRef will be used instead.</p>
  11105. </td>
  11106. </tr>
  11107. <tr>
  11108. <td>
  11109. <code>secretRef</code></br>
  11110. <em>
  11111. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  11112. External Secrets meta/v1.SecretKeySelector
  11113. </a>
  11114. </em>
  11115. </td>
  11116. <td>
  11117. <em>(Optional)</em>
  11118. <p>Optional secret field containing a Kubernetes ServiceAccount JWT used
  11119. for authenticating with Vault. If a name is specified without a key,
  11120. <code>token</code> is the default. If one is not specified, the one bound to
  11121. the controller will be used.</p>
  11122. </td>
  11123. </tr>
  11124. <tr>
  11125. <td>
  11126. <code>role</code></br>
  11127. <em>
  11128. string
  11129. </em>
  11130. </td>
  11131. <td>
  11132. <p>A required field containing the Vault Role to assume. A Role binds a
  11133. Kubernetes ServiceAccount with a set of Vault policies.</p>
  11134. </td>
  11135. </tr>
  11136. </tbody>
  11137. </table>
  11138. <h3 id="external-secrets.io/v1.VaultKubernetesServiceAccountTokenAuth">VaultKubernetesServiceAccountTokenAuth
  11139. </h3>
  11140. <p>
  11141. (<em>Appears on:</em>
  11142. <a href="#external-secrets.io/v1.VaultJwtAuth">VaultJwtAuth</a>)
  11143. </p>
  11144. <p>
  11145. <p>VaultKubernetesServiceAccountTokenAuth authenticates with Vault using a temporary
  11146. Kubernetes service account token retrieved by the <code>TokenRequest</code> API.</p>
  11147. </p>
  11148. <table>
  11149. <thead>
  11150. <tr>
  11151. <th>Field</th>
  11152. <th>Description</th>
  11153. </tr>
  11154. </thead>
  11155. <tbody>
  11156. <tr>
  11157. <td>
  11158. <code>serviceAccountRef</code></br>
  11159. <em>
  11160. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  11161. External Secrets meta/v1.ServiceAccountSelector
  11162. </a>
  11163. </em>
  11164. </td>
  11165. <td>
  11166. <p>Service account field containing the name of a kubernetes ServiceAccount.</p>
  11167. </td>
  11168. </tr>
  11169. <tr>
  11170. <td>
  11171. <code>audiences</code></br>
  11172. <em>
  11173. []string
  11174. </em>
  11175. </td>
  11176. <td>
  11177. <em>(Optional)</em>
  11178. <p>Optional audiences field that will be used to request a temporary Kubernetes service
  11179. account token for the service account referenced by <code>serviceAccountRef</code>.
  11180. Defaults to a single audience <code>vault</code> it not specified.
  11181. Deprecated: use serviceAccountRef.Audiences instead</p>
  11182. </td>
  11183. </tr>
  11184. <tr>
  11185. <td>
  11186. <code>expirationSeconds</code></br>
  11187. <em>
  11188. int64
  11189. </em>
  11190. </td>
  11191. <td>
  11192. <em>(Optional)</em>
  11193. <p>Optional expiration time in seconds that will be used to request a temporary
  11194. Kubernetes service account token for the service account referenced by
  11195. <code>serviceAccountRef</code>.
  11196. Deprecated: this will be removed in the future.
  11197. Defaults to 10 minutes.</p>
  11198. </td>
  11199. </tr>
  11200. </tbody>
  11201. </table>
  11202. <h3 id="external-secrets.io/v1.VaultLdapAuth">VaultLdapAuth
  11203. </h3>
  11204. <p>
  11205. (<em>Appears on:</em>
  11206. <a href="#external-secrets.io/v1.VaultAuth">VaultAuth</a>)
  11207. </p>
  11208. <p>
  11209. <p>VaultLdapAuth authenticates with Vault using the LDAP authentication method,
  11210. with the username and password stored in a Kubernetes Secret resource.</p>
  11211. </p>
  11212. <table>
  11213. <thead>
  11214. <tr>
  11215. <th>Field</th>
  11216. <th>Description</th>
  11217. </tr>
  11218. </thead>
  11219. <tbody>
  11220. <tr>
  11221. <td>
  11222. <code>path</code></br>
  11223. <em>
  11224. string
  11225. </em>
  11226. </td>
  11227. <td>
  11228. <p>Path where the LDAP authentication backend is mounted
  11229. in Vault, e.g: &ldquo;ldap&rdquo;</p>
  11230. </td>
  11231. </tr>
  11232. <tr>
  11233. <td>
  11234. <code>username</code></br>
  11235. <em>
  11236. string
  11237. </em>
  11238. </td>
  11239. <td>
  11240. <p>Username is an LDAP username used to authenticate using the LDAP Vault
  11241. authentication method</p>
  11242. </td>
  11243. </tr>
  11244. <tr>
  11245. <td>
  11246. <code>secretRef</code></br>
  11247. <em>
  11248. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  11249. External Secrets meta/v1.SecretKeySelector
  11250. </a>
  11251. </em>
  11252. </td>
  11253. <td>
  11254. <em>(Optional)</em>
  11255. <p>SecretRef to a key in a Secret resource containing password for the LDAP
  11256. user used to authenticate with Vault using the LDAP authentication
  11257. method</p>
  11258. </td>
  11259. </tr>
  11260. </tbody>
  11261. </table>
  11262. <h3 id="external-secrets.io/v1.VaultProvider">VaultProvider
  11263. </h3>
  11264. <p>
  11265. (<em>Appears on:</em>
  11266. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  11267. </p>
  11268. <p>
  11269. <p>Configures an store to sync secrets using a HashiCorp Vault
  11270. KV backend.</p>
  11271. </p>
  11272. <table>
  11273. <thead>
  11274. <tr>
  11275. <th>Field</th>
  11276. <th>Description</th>
  11277. </tr>
  11278. </thead>
  11279. <tbody>
  11280. <tr>
  11281. <td>
  11282. <code>auth</code></br>
  11283. <em>
  11284. <a href="#external-secrets.io/v1.VaultAuth">
  11285. VaultAuth
  11286. </a>
  11287. </em>
  11288. </td>
  11289. <td>
  11290. <p>Auth configures how secret-manager authenticates with the Vault server.</p>
  11291. </td>
  11292. </tr>
  11293. <tr>
  11294. <td>
  11295. <code>server</code></br>
  11296. <em>
  11297. string
  11298. </em>
  11299. </td>
  11300. <td>
  11301. <p>Server is the connection address for the Vault server, e.g: &ldquo;<a href="https://vault.example.com:8200&quot;">https://vault.example.com:8200&rdquo;</a>.</p>
  11302. </td>
  11303. </tr>
  11304. <tr>
  11305. <td>
  11306. <code>path</code></br>
  11307. <em>
  11308. string
  11309. </em>
  11310. </td>
  11311. <td>
  11312. <em>(Optional)</em>
  11313. <p>Path is the mount path of the Vault KV backend endpoint, e.g:
  11314. &ldquo;secret&rdquo;. The v2 KV secret engine version specific &ldquo;/data&rdquo; path suffix
  11315. for fetching secrets from Vault is optional and will be appended
  11316. if not present in specified path.</p>
  11317. </td>
  11318. </tr>
  11319. <tr>
  11320. <td>
  11321. <code>version</code></br>
  11322. <em>
  11323. <a href="#external-secrets.io/v1.VaultKVStoreVersion">
  11324. VaultKVStoreVersion
  11325. </a>
  11326. </em>
  11327. </td>
  11328. <td>
  11329. <p>Version is the Vault KV secret engine version. This can be either &ldquo;v1&rdquo; or
  11330. &ldquo;v2&rdquo;. Version defaults to &ldquo;v2&rdquo;.</p>
  11331. </td>
  11332. </tr>
  11333. <tr>
  11334. <td>
  11335. <code>namespace</code></br>
  11336. <em>
  11337. string
  11338. </em>
  11339. </td>
  11340. <td>
  11341. <em>(Optional)</em>
  11342. <p>Name of the vault namespace. Namespaces is a set of features within Vault Enterprise that allows
  11343. Vault environments to support Secure Multi-tenancy. e.g: &ldquo;ns1&rdquo;.
  11344. More about namespaces can be found here <a href="https://www.vaultproject.io/docs/enterprise/namespaces">https://www.vaultproject.io/docs/enterprise/namespaces</a></p>
  11345. </td>
  11346. </tr>
  11347. <tr>
  11348. <td>
  11349. <code>caBundle</code></br>
  11350. <em>
  11351. []byte
  11352. </em>
  11353. </td>
  11354. <td>
  11355. <em>(Optional)</em>
  11356. <p>PEM encoded CA bundle used to validate Vault server certificate. Only used
  11357. if the Server URL is using HTTPS protocol. This parameter is ignored for
  11358. plain HTTP protocol connection. If not set the system root certificates
  11359. are used to validate the TLS connection.</p>
  11360. </td>
  11361. </tr>
  11362. <tr>
  11363. <td>
  11364. <code>tls</code></br>
  11365. <em>
  11366. <a href="#external-secrets.io/v1.VaultClientTLS">
  11367. VaultClientTLS
  11368. </a>
  11369. </em>
  11370. </td>
  11371. <td>
  11372. <em>(Optional)</em>
  11373. <p>The configuration used for client side related TLS communication, when the Vault server
  11374. requires mutual authentication. Only used if the Server URL is using HTTPS protocol.
  11375. This parameter is ignored for plain HTTP protocol connection.
  11376. It&rsquo;s worth noting this configuration is different from the &ldquo;TLS certificates auth method&rdquo;,
  11377. which is available under the <code>auth.cert</code> section.</p>
  11378. </td>
  11379. </tr>
  11380. <tr>
  11381. <td>
  11382. <code>caProvider</code></br>
  11383. <em>
  11384. <a href="#external-secrets.io/v1.CAProvider">
  11385. CAProvider
  11386. </a>
  11387. </em>
  11388. </td>
  11389. <td>
  11390. <em>(Optional)</em>
  11391. <p>The provider for the CA bundle to use to validate Vault server certificate.</p>
  11392. </td>
  11393. </tr>
  11394. <tr>
  11395. <td>
  11396. <code>readYourWrites</code></br>
  11397. <em>
  11398. bool
  11399. </em>
  11400. </td>
  11401. <td>
  11402. <em>(Optional)</em>
  11403. <p>ReadYourWrites ensures isolated read-after-write semantics by
  11404. providing discovered cluster replication states in each request.
  11405. More information about eventual consistency in Vault can be found here
  11406. <a href="https://www.vaultproject.io/docs/enterprise/consistency">https://www.vaultproject.io/docs/enterprise/consistency</a></p>
  11407. </td>
  11408. </tr>
  11409. <tr>
  11410. <td>
  11411. <code>forwardInconsistent</code></br>
  11412. <em>
  11413. bool
  11414. </em>
  11415. </td>
  11416. <td>
  11417. <em>(Optional)</em>
  11418. <p>ForwardInconsistent tells Vault to forward read-after-write requests to the Vault
  11419. leader instead of simply retrying within a loop. This can increase performance if
  11420. the option is enabled serverside.
  11421. <a href="https://www.vaultproject.io/docs/configuration/replication#allow_forwarding_via_header">https://www.vaultproject.io/docs/configuration/replication#allow_forwarding_via_header</a></p>
  11422. </td>
  11423. </tr>
  11424. <tr>
  11425. <td>
  11426. <code>headers</code></br>
  11427. <em>
  11428. map[string]string
  11429. </em>
  11430. </td>
  11431. <td>
  11432. <em>(Optional)</em>
  11433. <p>Headers to be added in Vault request</p>
  11434. </td>
  11435. </tr>
  11436. </tbody>
  11437. </table>
  11438. <h3 id="external-secrets.io/v1.VaultUserPassAuth">VaultUserPassAuth
  11439. </h3>
  11440. <p>
  11441. (<em>Appears on:</em>
  11442. <a href="#external-secrets.io/v1.VaultAuth">VaultAuth</a>)
  11443. </p>
  11444. <p>
  11445. <p>VaultUserPassAuth authenticates with Vault using UserPass authentication method,
  11446. with the username and password stored in a Kubernetes Secret resource.</p>
  11447. </p>
  11448. <table>
  11449. <thead>
  11450. <tr>
  11451. <th>Field</th>
  11452. <th>Description</th>
  11453. </tr>
  11454. </thead>
  11455. <tbody>
  11456. <tr>
  11457. <td>
  11458. <code>path</code></br>
  11459. <em>
  11460. string
  11461. </em>
  11462. </td>
  11463. <td>
  11464. <p>Path where the UserPassword authentication backend is mounted
  11465. in Vault, e.g: &ldquo;userpass&rdquo;</p>
  11466. </td>
  11467. </tr>
  11468. <tr>
  11469. <td>
  11470. <code>username</code></br>
  11471. <em>
  11472. string
  11473. </em>
  11474. </td>
  11475. <td>
  11476. <p>Username is a username used to authenticate using the UserPass Vault
  11477. authentication method</p>
  11478. </td>
  11479. </tr>
  11480. <tr>
  11481. <td>
  11482. <code>secretRef</code></br>
  11483. <em>
  11484. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  11485. External Secrets meta/v1.SecretKeySelector
  11486. </a>
  11487. </em>
  11488. </td>
  11489. <td>
  11490. <em>(Optional)</em>
  11491. <p>SecretRef to a key in a Secret resource containing password for the
  11492. user used to authenticate with Vault using the UserPass authentication
  11493. method</p>
  11494. </td>
  11495. </tr>
  11496. </tbody>
  11497. </table>
  11498. <h3 id="external-secrets.io/v1.WebhookCAProvider">WebhookCAProvider
  11499. </h3>
  11500. <p>
  11501. (<em>Appears on:</em>
  11502. <a href="#external-secrets.io/v1.WebhookProvider">WebhookProvider</a>)
  11503. </p>
  11504. <p>
  11505. <p>Defines a location to fetch the cert for the webhook provider from.</p>
  11506. </p>
  11507. <table>
  11508. <thead>
  11509. <tr>
  11510. <th>Field</th>
  11511. <th>Description</th>
  11512. </tr>
  11513. </thead>
  11514. <tbody>
  11515. <tr>
  11516. <td>
  11517. <code>type</code></br>
  11518. <em>
  11519. <a href="#external-secrets.io/v1.WebhookCAProviderType">
  11520. WebhookCAProviderType
  11521. </a>
  11522. </em>
  11523. </td>
  11524. <td>
  11525. <p>The type of provider to use such as &ldquo;Secret&rdquo;, or &ldquo;ConfigMap&rdquo;.</p>
  11526. </td>
  11527. </tr>
  11528. <tr>
  11529. <td>
  11530. <code>name</code></br>
  11531. <em>
  11532. string
  11533. </em>
  11534. </td>
  11535. <td>
  11536. <p>The name of the object located at the provider type.</p>
  11537. </td>
  11538. </tr>
  11539. <tr>
  11540. <td>
  11541. <code>key</code></br>
  11542. <em>
  11543. string
  11544. </em>
  11545. </td>
  11546. <td>
  11547. <p>The key where the CA certificate can be found in the Secret or ConfigMap.</p>
  11548. </td>
  11549. </tr>
  11550. <tr>
  11551. <td>
  11552. <code>namespace</code></br>
  11553. <em>
  11554. string
  11555. </em>
  11556. </td>
  11557. <td>
  11558. <em>(Optional)</em>
  11559. <p>The namespace the Provider type is in.</p>
  11560. </td>
  11561. </tr>
  11562. </tbody>
  11563. </table>
  11564. <h3 id="external-secrets.io/v1.WebhookCAProviderType">WebhookCAProviderType
  11565. (<code>string</code> alias)</p></h3>
  11566. <p>
  11567. (<em>Appears on:</em>
  11568. <a href="#external-secrets.io/v1.WebhookCAProvider">WebhookCAProvider</a>)
  11569. </p>
  11570. <p>
  11571. </p>
  11572. <table>
  11573. <thead>
  11574. <tr>
  11575. <th>Value</th>
  11576. <th>Description</th>
  11577. </tr>
  11578. </thead>
  11579. <tbody><tr><td><p>&#34;ConfigMap&#34;</p></td>
  11580. <td></td>
  11581. </tr><tr><td><p>&#34;Secret&#34;</p></td>
  11582. <td></td>
  11583. </tr></tbody>
  11584. </table>
  11585. <h3 id="external-secrets.io/v1.WebhookProvider">WebhookProvider
  11586. </h3>
  11587. <p>
  11588. (<em>Appears on:</em>
  11589. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  11590. </p>
  11591. <p>
  11592. <p>WebHookProvider Configures an store to sync secrets from simple web apis.</p>
  11593. </p>
  11594. <table>
  11595. <thead>
  11596. <tr>
  11597. <th>Field</th>
  11598. <th>Description</th>
  11599. </tr>
  11600. </thead>
  11601. <tbody>
  11602. <tr>
  11603. <td>
  11604. <code>method</code></br>
  11605. <em>
  11606. string
  11607. </em>
  11608. </td>
  11609. <td>
  11610. <p>Webhook Method</p>
  11611. </td>
  11612. </tr>
  11613. <tr>
  11614. <td>
  11615. <code>url</code></br>
  11616. <em>
  11617. string
  11618. </em>
  11619. </td>
  11620. <td>
  11621. <p>Webhook url to call</p>
  11622. </td>
  11623. </tr>
  11624. <tr>
  11625. <td>
  11626. <code>headers</code></br>
  11627. <em>
  11628. map[string]string
  11629. </em>
  11630. </td>
  11631. <td>
  11632. <em>(Optional)</em>
  11633. <p>Headers</p>
  11634. </td>
  11635. </tr>
  11636. <tr>
  11637. <td>
  11638. <code>auth</code></br>
  11639. <em>
  11640. <a href="#external-secrets.io/v1.AuthorizationProtocol">
  11641. AuthorizationProtocol
  11642. </a>
  11643. </em>
  11644. </td>
  11645. <td>
  11646. <em>(Optional)</em>
  11647. <p>Auth specifies a authorization protocol. Only one protocol may be set.</p>
  11648. </td>
  11649. </tr>
  11650. <tr>
  11651. <td>
  11652. <code>body</code></br>
  11653. <em>
  11654. string
  11655. </em>
  11656. </td>
  11657. <td>
  11658. <em>(Optional)</em>
  11659. <p>Body</p>
  11660. </td>
  11661. </tr>
  11662. <tr>
  11663. <td>
  11664. <code>timeout</code></br>
  11665. <em>
  11666. <a href="https://pkg.go.dev/k8s.io/apimachinery/pkg/apis/meta/v1#Duration">
  11667. Kubernetes meta/v1.Duration
  11668. </a>
  11669. </em>
  11670. </td>
  11671. <td>
  11672. <em>(Optional)</em>
  11673. <p>Timeout</p>
  11674. </td>
  11675. </tr>
  11676. <tr>
  11677. <td>
  11678. <code>result</code></br>
  11679. <em>
  11680. <a href="#external-secrets.io/v1.WebhookResult">
  11681. WebhookResult
  11682. </a>
  11683. </em>
  11684. </td>
  11685. <td>
  11686. <p>Result formatting</p>
  11687. </td>
  11688. </tr>
  11689. <tr>
  11690. <td>
  11691. <code>secrets</code></br>
  11692. <em>
  11693. <a href="#external-secrets.io/v1.WebhookSecret">
  11694. []WebhookSecret
  11695. </a>
  11696. </em>
  11697. </td>
  11698. <td>
  11699. <em>(Optional)</em>
  11700. <p>Secrets to fill in templates
  11701. These secrets will be passed to the templating function as key value pairs under the given name</p>
  11702. </td>
  11703. </tr>
  11704. <tr>
  11705. <td>
  11706. <code>caBundle</code></br>
  11707. <em>
  11708. []byte
  11709. </em>
  11710. </td>
  11711. <td>
  11712. <em>(Optional)</em>
  11713. <p>PEM encoded CA bundle used to validate webhook server certificate. Only used
  11714. if the Server URL is using HTTPS protocol. This parameter is ignored for
  11715. plain HTTP protocol connection. If not set the system root certificates
  11716. are used to validate the TLS connection.</p>
  11717. </td>
  11718. </tr>
  11719. <tr>
  11720. <td>
  11721. <code>caProvider</code></br>
  11722. <em>
  11723. <a href="#external-secrets.io/v1.WebhookCAProvider">
  11724. WebhookCAProvider
  11725. </a>
  11726. </em>
  11727. </td>
  11728. <td>
  11729. <em>(Optional)</em>
  11730. <p>The provider for the CA bundle to use to validate webhook server certificate.</p>
  11731. </td>
  11732. </tr>
  11733. </tbody>
  11734. </table>
  11735. <h3 id="external-secrets.io/v1.WebhookResult">WebhookResult
  11736. </h3>
  11737. <p>
  11738. (<em>Appears on:</em>
  11739. <a href="#external-secrets.io/v1.WebhookProvider">WebhookProvider</a>)
  11740. </p>
  11741. <p>
  11742. </p>
  11743. <table>
  11744. <thead>
  11745. <tr>
  11746. <th>Field</th>
  11747. <th>Description</th>
  11748. </tr>
  11749. </thead>
  11750. <tbody>
  11751. <tr>
  11752. <td>
  11753. <code>jsonPath</code></br>
  11754. <em>
  11755. string
  11756. </em>
  11757. </td>
  11758. <td>
  11759. <em>(Optional)</em>
  11760. <p>Json path of return value</p>
  11761. </td>
  11762. </tr>
  11763. </tbody>
  11764. </table>
  11765. <h3 id="external-secrets.io/v1.WebhookSecret">WebhookSecret
  11766. </h3>
  11767. <p>
  11768. (<em>Appears on:</em>
  11769. <a href="#external-secrets.io/v1.WebhookProvider">WebhookProvider</a>)
  11770. </p>
  11771. <p>
  11772. </p>
  11773. <table>
  11774. <thead>
  11775. <tr>
  11776. <th>Field</th>
  11777. <th>Description</th>
  11778. </tr>
  11779. </thead>
  11780. <tbody>
  11781. <tr>
  11782. <td>
  11783. <code>name</code></br>
  11784. <em>
  11785. string
  11786. </em>
  11787. </td>
  11788. <td>
  11789. <p>Name of this secret in templates</p>
  11790. </td>
  11791. </tr>
  11792. <tr>
  11793. <td>
  11794. <code>secretRef</code></br>
  11795. <em>
  11796. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  11797. External Secrets meta/v1.SecretKeySelector
  11798. </a>
  11799. </em>
  11800. </td>
  11801. <td>
  11802. <p>Secret ref to fill in credentials</p>
  11803. </td>
  11804. </tr>
  11805. </tbody>
  11806. </table>
  11807. <h3 id="external-secrets.io/v1.YandexCertificateManagerAuth">YandexCertificateManagerAuth
  11808. </h3>
  11809. <p>
  11810. (<em>Appears on:</em>
  11811. <a href="#external-secrets.io/v1.YandexCertificateManagerProvider">YandexCertificateManagerProvider</a>)
  11812. </p>
  11813. <p>
  11814. </p>
  11815. <table>
  11816. <thead>
  11817. <tr>
  11818. <th>Field</th>
  11819. <th>Description</th>
  11820. </tr>
  11821. </thead>
  11822. <tbody>
  11823. <tr>
  11824. <td>
  11825. <code>authorizedKeySecretRef</code></br>
  11826. <em>
  11827. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  11828. External Secrets meta/v1.SecretKeySelector
  11829. </a>
  11830. </em>
  11831. </td>
  11832. <td>
  11833. <em>(Optional)</em>
  11834. <p>The authorized key used for authentication</p>
  11835. </td>
  11836. </tr>
  11837. </tbody>
  11838. </table>
  11839. <h3 id="external-secrets.io/v1.YandexCertificateManagerCAProvider">YandexCertificateManagerCAProvider
  11840. </h3>
  11841. <p>
  11842. (<em>Appears on:</em>
  11843. <a href="#external-secrets.io/v1.YandexCertificateManagerProvider">YandexCertificateManagerProvider</a>)
  11844. </p>
  11845. <p>
  11846. </p>
  11847. <table>
  11848. <thead>
  11849. <tr>
  11850. <th>Field</th>
  11851. <th>Description</th>
  11852. </tr>
  11853. </thead>
  11854. <tbody>
  11855. <tr>
  11856. <td>
  11857. <code>certSecretRef</code></br>
  11858. <em>
  11859. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  11860. External Secrets meta/v1.SecretKeySelector
  11861. </a>
  11862. </em>
  11863. </td>
  11864. <td>
  11865. </td>
  11866. </tr>
  11867. </tbody>
  11868. </table>
  11869. <h3 id="external-secrets.io/v1.YandexCertificateManagerProvider">YandexCertificateManagerProvider
  11870. </h3>
  11871. <p>
  11872. (<em>Appears on:</em>
  11873. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  11874. </p>
  11875. <p>
  11876. <p>YandexCertificateManagerProvider Configures a store to sync secrets using the Yandex Certificate Manager provider.</p>
  11877. </p>
  11878. <table>
  11879. <thead>
  11880. <tr>
  11881. <th>Field</th>
  11882. <th>Description</th>
  11883. </tr>
  11884. </thead>
  11885. <tbody>
  11886. <tr>
  11887. <td>
  11888. <code>apiEndpoint</code></br>
  11889. <em>
  11890. string
  11891. </em>
  11892. </td>
  11893. <td>
  11894. <em>(Optional)</em>
  11895. <p>Yandex.Cloud API endpoint (e.g. &lsquo;api.cloud.yandex.net:443&rsquo;)</p>
  11896. </td>
  11897. </tr>
  11898. <tr>
  11899. <td>
  11900. <code>auth</code></br>
  11901. <em>
  11902. <a href="#external-secrets.io/v1.YandexCertificateManagerAuth">
  11903. YandexCertificateManagerAuth
  11904. </a>
  11905. </em>
  11906. </td>
  11907. <td>
  11908. <p>Auth defines the information necessary to authenticate against Yandex Certificate Manager</p>
  11909. </td>
  11910. </tr>
  11911. <tr>
  11912. <td>
  11913. <code>caProvider</code></br>
  11914. <em>
  11915. <a href="#external-secrets.io/v1.YandexCertificateManagerCAProvider">
  11916. YandexCertificateManagerCAProvider
  11917. </a>
  11918. </em>
  11919. </td>
  11920. <td>
  11921. <em>(Optional)</em>
  11922. <p>The provider for the CA bundle to use to validate Yandex.Cloud server certificate.</p>
  11923. </td>
  11924. </tr>
  11925. </tbody>
  11926. </table>
  11927. <h3 id="external-secrets.io/v1.YandexLockboxAuth">YandexLockboxAuth
  11928. </h3>
  11929. <p>
  11930. (<em>Appears on:</em>
  11931. <a href="#external-secrets.io/v1.YandexLockboxProvider">YandexLockboxProvider</a>)
  11932. </p>
  11933. <p>
  11934. </p>
  11935. <table>
  11936. <thead>
  11937. <tr>
  11938. <th>Field</th>
  11939. <th>Description</th>
  11940. </tr>
  11941. </thead>
  11942. <tbody>
  11943. <tr>
  11944. <td>
  11945. <code>authorizedKeySecretRef</code></br>
  11946. <em>
  11947. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  11948. External Secrets meta/v1.SecretKeySelector
  11949. </a>
  11950. </em>
  11951. </td>
  11952. <td>
  11953. <em>(Optional)</em>
  11954. <p>The authorized key used for authentication</p>
  11955. </td>
  11956. </tr>
  11957. </tbody>
  11958. </table>
  11959. <h3 id="external-secrets.io/v1.YandexLockboxCAProvider">YandexLockboxCAProvider
  11960. </h3>
  11961. <p>
  11962. (<em>Appears on:</em>
  11963. <a href="#external-secrets.io/v1.YandexLockboxProvider">YandexLockboxProvider</a>)
  11964. </p>
  11965. <p>
  11966. </p>
  11967. <table>
  11968. <thead>
  11969. <tr>
  11970. <th>Field</th>
  11971. <th>Description</th>
  11972. </tr>
  11973. </thead>
  11974. <tbody>
  11975. <tr>
  11976. <td>
  11977. <code>certSecretRef</code></br>
  11978. <em>
  11979. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  11980. External Secrets meta/v1.SecretKeySelector
  11981. </a>
  11982. </em>
  11983. </td>
  11984. <td>
  11985. </td>
  11986. </tr>
  11987. </tbody>
  11988. </table>
  11989. <h3 id="external-secrets.io/v1.YandexLockboxProvider">YandexLockboxProvider
  11990. </h3>
  11991. <p>
  11992. (<em>Appears on:</em>
  11993. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  11994. </p>
  11995. <p>
  11996. <p>YandexLockboxProvider Configures a store to sync secrets using the Yandex Lockbox provider.</p>
  11997. </p>
  11998. <table>
  11999. <thead>
  12000. <tr>
  12001. <th>Field</th>
  12002. <th>Description</th>
  12003. </tr>
  12004. </thead>
  12005. <tbody>
  12006. <tr>
  12007. <td>
  12008. <code>apiEndpoint</code></br>
  12009. <em>
  12010. string
  12011. </em>
  12012. </td>
  12013. <td>
  12014. <em>(Optional)</em>
  12015. <p>Yandex.Cloud API endpoint (e.g. &lsquo;api.cloud.yandex.net:443&rsquo;)</p>
  12016. </td>
  12017. </tr>
  12018. <tr>
  12019. <td>
  12020. <code>auth</code></br>
  12021. <em>
  12022. <a href="#external-secrets.io/v1.YandexLockboxAuth">
  12023. YandexLockboxAuth
  12024. </a>
  12025. </em>
  12026. </td>
  12027. <td>
  12028. <p>Auth defines the information necessary to authenticate against Yandex Lockbox</p>
  12029. </td>
  12030. </tr>
  12031. <tr>
  12032. <td>
  12033. <code>caProvider</code></br>
  12034. <em>
  12035. <a href="#external-secrets.io/v1.YandexLockboxCAProvider">
  12036. YandexLockboxCAProvider
  12037. </a>
  12038. </em>
  12039. </td>
  12040. <td>
  12041. <em>(Optional)</em>
  12042. <p>The provider for the CA bundle to use to validate Yandex.Cloud server certificate.</p>
  12043. </td>
  12044. </tr>
  12045. </tbody>
  12046. </table>
  12047. <hr/>
  12048. <p><em>
  12049. Generated with <code>gen-crd-api-reference-docs</code>.
  12050. </em></p>
  12051. </article>
  12052. </div>
  12053. <script>var target=document.getElementById(location.hash.slice(1));target&&target.name&&(target.checked=target.name.startsWith("__tabbed_"))</script>
  12054. </div>
  12055. </main>
  12056. <img referrerpolicy="no-referrer-when-downgrade" src="https://static.scarf.sh/a.png?x-pxid=6658a9eb-067d-49f1-94f2-b8b00f21451e" alt=""/>
  12057. <footer class="md-footer">
  12058. <div class="md-footer-meta md-typeset">
  12059. <div class="md-footer-meta__inner md-grid">
  12060. <div class="md-copyright">
  12061. <div class="md-copyright__highlight">
  12062. &copy; 2025 The external-secrets Authors.<br/>
  12063. &copy; 2025 The Linux Foundation. All rights reserved.<br/><br/>
  12064. The Linux Foundation has registered trademarks and uses trademarks.<br/>
  12065. For a list of trademarks of The Linux Foundation, please see our <a href="https://www.linuxfoundation.org/trademark-usage/">Trademark Usage page</a>.
  12066. </div>
  12067. Made with
  12068. <a href="https://squidfunk.github.io/mkdocs-material/" target="_blank" rel="noopener">
  12069. Material for MkDocs
  12070. </a>
  12071. </div>
  12072. </div>
  12073. </div>
  12074. </footer>
  12075. </div>
  12076. <div class="md-dialog" data-md-component="dialog">
  12077. <div class="md-dialog__inner md-typeset"></div>
  12078. </div>
  12079. <script id="__config" type="application/json">{"base": "../..", "features": ["navigation.tabs", "navigation.indexes", "navigation.expand"], "search": "../../assets/javascripts/workers/search.d50fe291.min.js", "tags": null, "translations": {"clipboard.copied": "Copied to clipboard", "clipboard.copy": "Copy to clipboard", "search.result.more.one": "1 more on this page", "search.result.more.other": "# more on this page", "search.result.none": "No matching documents", "search.result.one": "1 matching document", "search.result.other": "# matching documents", "search.result.placeholder": "Type to start searching", "search.result.term.missing": "Missing", "select.version": "Select version"}, "version": {"provider": "mike"}}</script>
  12080. <script src="../../assets/javascripts/bundle.50899def.min.js"></script>
  12081. </body>
  12082. </html>